koguma 0.4.0 → 0.4.1
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/package.json +1 -1
- package/src/db/schema.ts +1 -1
package/package.json
CHANGED
package/src/db/schema.ts
CHANGED
|
@@ -79,7 +79,7 @@ export function generateSchema(
|
|
|
79
79
|
'id TEXT PRIMARY KEY',
|
|
80
80
|
"created_at TEXT DEFAULT (datetime('now'))",
|
|
81
81
|
"updated_at TEXT DEFAULT (datetime('now'))",
|
|
82
|
-
"status TEXT NOT NULL DEFAULT '
|
|
82
|
+
"status TEXT NOT NULL DEFAULT 'published'",
|
|
83
83
|
'publishAt TEXT'
|
|
84
84
|
];
|
|
85
85
|
|