@zodic/shared 0.0.16 → 0.0.17

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.
Files changed (2) hide show
  1. package/db/schema.ts +2 -1
  2. package/package.json +1 -1
package/db/schema.ts CHANGED
@@ -175,7 +175,7 @@ export const artifacts = sqliteTable(
175
175
  {
176
176
  id: text('id').primaryKey(),
177
177
  name: text('name').notNull(), // Name of the artifact (e.g., "Cosmic Mirror")
178
- slug: text('slug').notNull(),
178
+ slug: text('slug').notNull(), // Slug of the artifact (e.g., "cosmic-mirror")
179
179
  conceptId: text('concept_id')
180
180
  .notNull()
181
181
  .references(() => concepts.id, { onDelete: 'cascade' }),
@@ -238,6 +238,7 @@ export const generations = sqliteTable(
238
238
  () => userArtifacts.id,
239
239
  { onDelete: 'cascade' }
240
240
  ),
241
+ gender: text('gender'),
241
242
  conceptCombinationId: text('concept_combination_id').references(
242
243
  () => conceptCombinations.id,
243
244
  { onDelete: 'cascade' }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {