maybe this one works

This commit is contained in:
2026-03-15 13:53:05 +13:00
parent fd315a38ed
commit 7c68170ef7
45 changed files with 9877 additions and 0 deletions

12
src/schema.ts Normal file
View File

@@ -0,0 +1,12 @@
import { integer, sqliteTable, text } from "drizzle-orm/sqlite-core";
export const GuestLog = sqliteTable("GuestLog", {
id: integer("id").primaryKey({
autoIncrement: true,
}),
name: text("name").notNull(),
message: text("message"),
date: integer("date", {mode: "timestamp",})
.notNull()
.$defaultFn(() => new Date()),
});