13 lines
299 B
TypeScript
13 lines
299 B
TypeScript
import {
|
|
sqliteTable,
|
|
integer,
|
|
text,
|
|
} from "drizzle-orm/sqlite-core";
|
|
|
|
export const days = sqliteTable("days", {
|
|
id: integer("id").primaryKey({ autoIncrement: true }),
|
|
mood: integer("mood"),
|
|
date: text("date").notNull().unique(),
|
|
comment: text("comment").notNull(),
|
|
});
|