a template starter repo for sveltekit projects
0

Configure Feed

Select the types of activity you want to include in your feed.

suede / src / lib / server / db / schema.ts
276 B 9 lines
1import { integer, sqliteTable, text } from 'drizzle-orm/sqlite-core'; 2 3export const task = sqliteTable('task', { 4 id: text('id') 5 .primaryKey() 6 .$defaultFn(() => crypto.randomUUID()), 7 title: text('title').notNull(), 8 priority: integer('priority').notNull().default(1) 9});