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