chore: initial prototype — UI shell with mock data on vinext/Cloudflare stack

This commit is contained in:
2026-07-13 06:38:40 -04:00
commit ec14645a4b
28 changed files with 12143 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { sql } from "drizzle-orm";
import { integer, sqliteTable, text } from "drizzle-orm/sqlite-core";
export const notes = sqliteTable("notes", {
id: integer("id").primaryKey({ autoIncrement: true }),
title: text("title").notNull(),
content: text("content").notNull().default(""),
createdAt: text("created_at").notNull().default(sql`CURRENT_TIMESTAMP`),
});