forked from jappel/leistungsbilanz-ts
first commit
This commit is contained in:
commit
c3e98af5b6
36 changed files with 4779 additions and 0 deletions
7
src/db/schema/projects.ts
Normal file
7
src/db/schema/projects.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import { sqliteTable, text } from "drizzle-orm/sqlite-core";
|
||||
|
||||
export const projects = sqliteTable("projects", {
|
||||
id: text("id").primaryKey(),
|
||||
name: text("name").notNull(),
|
||||
});
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue