diff options
author | Mathias Magnusson <mathias@magnusson.space> | 2025-08-14 15:11:23 +0200 |
---|---|---|
committer | Mathias Magnusson <mathias@magnusson.space> | 2025-08-14 18:44:19 +0200 |
commit | 923c7c6b1a6549a6c5012713a22d5cf6e478f994 (patch) | |
tree | 1f50b20f53745f348ea7215a0ab0dd90a45a8863 /src/db | |
parent | 59f99c59d577ac4c640bee676856969ec035bcb6 (diff) | |
download | uneven-923c7c6b1a6549a6c5012713a22d5cf6e478f994.tar.gz |
Set up htmx & drizzle+libsql
Diffstat (limited to 'src/db')
-rw-r--r-- | src/db/schema.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/db/schema.ts b/src/db/schema.ts new file mode 100644 index 0000000..15da652 --- /dev/null +++ b/src/db/schema.ts @@ -0,0 +1,5 @@ +import { text, sqliteTable } from "drizzle-orm/sqlite-core"; + +export const groupsTable = sqliteTable("groups", { + name: text("name").notNull(), +}); |