@zodic/shared 0.0.398 → 0.0.399
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
|
@@ -148,6 +148,7 @@ export const conceptsData = sqliteTable(
|
|
|
148
148
|
poem: text('poem').default('[]').notNull(), // JSON stringified array
|
|
149
149
|
leonardoPrompt: text('leonardo_prompt'), // Leonardo AI prompt
|
|
150
150
|
postImages: text('post_images').default('[]'), // JSON stringified array
|
|
151
|
+
framedImages: text('framed_images').default('[]'), // JSON stringified array
|
|
151
152
|
reelImages: text('reel_images').default('[]'), // JSON stringified array
|
|
152
153
|
status: text('status').default('idle'), // Processing status
|
|
153
154
|
createdAt: integer('created_at').default(sql`CURRENT_TIMESTAMP`),
|