Add recordTypes schema file.
This commit is contained in:
parent
bd01e0223d
commit
86fdbb9ac5
6
src/lib/server/db/schema/recordTypes.ts
Normal file
6
src/lib/server/db/schema/recordTypes.ts
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
import { sqliteTable, integer, text } from "drizzle-orm/sqlite-core";
|
||||||
|
|
||||||
|
export const recordTypes = sqliteTable('record_types', {
|
||||||
|
id: integer('id').primaryKey({autoIncrement: true}),
|
||||||
|
type: text('type')
|
||||||
|
})
|
||||||
Loading…
Reference in New Issue
Block a user