@zodic/shared 0.0.396 → 0.0.397
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/db/schema.ts
CHANGED
|
@@ -480,7 +480,7 @@ export const userArtifacts = sqliteTable(
|
|
|
480
480
|
reelImages: text('reel_images'), // Stringified JSON array of { id: string, url: string } for up to 6 reel images (if used)
|
|
481
481
|
chosenImageUrl: text('chosen_image_url'), // URL of the single image chosen by the user
|
|
482
482
|
upscaledImage: text('upscaled_image'), // { id: string, url: string }
|
|
483
|
-
|
|
483
|
+
framedImageUrl: text('framed_image_url'),
|
|
484
484
|
status: text('status')
|
|
485
485
|
.default('pending') // Possible statuses: 'pending', 'post_ready', 'reel_ready', 'completed', 'revealed'
|
|
486
486
|
.notNull(),
|