Fix small details

This commit is contained in:
2024-08-22 18:34:05 +02:00
parent 8b3de3291e
commit 240427261a
10 changed files with 94 additions and 12 deletions

View File

@@ -5,5 +5,6 @@ export const users = sqliteTable('users', {
id: integer('id').primaryKey(),
name: text('name').default(''),
email: text('email').default(''),
description: text('description').default(''),
createdAt: text('created_at').default(sql`(CURRENT_DATE)`),
})