summaryrefslogtreecommitdiff
path: root/src/db/schema.ts
blob: 15da652c2060f5ea95574e2abd5b336bed294a7d (plain) (blame)
1
2
3
4
5
import { text, sqliteTable } from "drizzle-orm/sqlite-core";

export const groupsTable = sqliteTable("groups", {
    name: text("name").notNull(),
});