mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
fix: Upload with new storage backend system.
This commit is contained in:
@@ -0,0 +1 @@
|
||||
ALTER TABLE "backups" ADD COLUMN "imported" boolean DEFAULT false;
|
||||
File diff suppressed because it is too large
Load Diff
@@ -190,6 +190,13 @@
|
||||
"when": 1768665081232,
|
||||
"tag": "0026_demonic_santa_claus",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 27,
|
||||
"version": "7",
|
||||
"when": 1768676733859,
|
||||
"tag": "0027_special_the_santerians",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -41,6 +41,7 @@ export const backup = pgTable(
|
||||
databaseId: uuid("database_id")
|
||||
.notNull()
|
||||
.references(() => database.id, {onDelete: "cascade"}),
|
||||
imported: boolean('imported').default(false),
|
||||
...timestamps
|
||||
},
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user