Add recordTypes schema file.

This commit is contained in:
themodrnhakr 2025-09-25 00:38:16 -05:00
parent bd01e0223d
commit 86fdbb9ac5

View 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')
})