@vertz/create-vertz-app 0.2.14 → 0.2.15

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.
@@ -193,7 +193,7 @@ export function schemaTemplate() {
193
193
  return `import { d } from 'vertz/db';
194
194
 
195
195
  export const tasksTable = d.table('tasks', {
196
- id: d.uuid().primary({ generate: 'uuid' }),
196
+ id: d.uuid().primary(),
197
197
  title: d.text(),
198
198
  completed: d.boolean().default(false),
199
199
  createdAt: d.timestamp().default('now').readOnly(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertz/create-vertz-app",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Create a new Vertz application",