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(), });