mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 05:49:16 +01:00
feat(federation): ✨ Add ActivityPub bridge support with CLI command
This commit is contained in:
parent
153aa061f0
commit
ff315af230
13 changed files with 2337 additions and 15 deletions
1
drizzle/migrations/0029_shiny_korvac.sql
Normal file
1
drizzle/migrations/0029_shiny_korvac.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE "Instances" ALTER COLUMN "logo" DROP NOT NULL;
|
||||
2145
drizzle/migrations/meta/0029_snapshot.json
Normal file
2145
drizzle/migrations/meta/0029_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -204,6 +204,13 @@
|
|||
"when": 1719726234826,
|
||||
"tag": "0028_unique_fat_cobra",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 29,
|
||||
"version": "7",
|
||||
"when": 1721155789219,
|
||||
"tag": "0029_shiny_korvac",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -344,7 +344,7 @@ export const Instances = pgTable("Instances", {
|
|||
baseUrl: text("base_url").notNull(),
|
||||
name: text("name").notNull(),
|
||||
version: text("version").notNull(),
|
||||
logo: jsonb("logo").notNull(),
|
||||
logo: jsonb("logo"),
|
||||
disableAutomoderation: boolean("disable_automoderation")
|
||||
.default(false)
|
||||
.notNull(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue