Lint code

This commit is contained in:
2024-07-24 01:54:48 +02:00
parent 5c96b8eea0
commit f18bd1fd98
22 changed files with 13391 additions and 38 deletions

View File

@@ -46,4 +46,4 @@
"internal": {
"indexes": {}
}
}
}

View File

@@ -10,4 +10,4 @@
"breakpoints": true
}
]
}
}

View File

@@ -4,5 +4,5 @@ import { sql } from 'drizzle-orm'
export const users = sqliteTable('users', {
id: integer('id').primaryKey(),
name: text('name').default(''),
createdAt: text('created_at').default(sql`(CURRENT_DATE)`)
createdAt: text('created_at').default(sql`(CURRENT_DATE)`),
})