Add printable guest sign studio and refine event imagery
This commit is contained in:
@@ -0,0 +1 @@
|
||||
ALTER TABLE event_banners ADD COLUMN crop jsonb;
|
||||
@@ -71,6 +71,13 @@
|
||||
"when": 1788906100000,
|
||||
"tag": "0009_photo_exports",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 10,
|
||||
"version": "7",
|
||||
"when": 1788996000000,
|
||||
"tag": "0010_banner_crop",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -216,6 +216,7 @@ export const eventBanners = pgTable("event_banners", {
|
||||
eventId: uuid("event_id").notNull().references(() => events.id, { onDelete: "cascade" }),
|
||||
originalKey: text("original_key").notNull(),
|
||||
displayKey: text("display_key"),
|
||||
crop: jsonb("crop").$type<import("@album/contracts").BannerCrop>(),
|
||||
contentType: text("content_type").notNull(),
|
||||
byteSize: integer("byte_size").notNull(),
|
||||
status: text("status").notNull().default("uploading"),
|
||||
|
||||
Reference in New Issue
Block a user