Files
moreminimore-vibe/drizzle/0011_light_zeigeist.sql
Kunthawat Greethong 11986a0196 Add project files
2025-12-05 09:26:53 +07:00

9 lines
256 B
SQL

CREATE TABLE `prompts` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`title` text NOT NULL,
`description` text,
`content` text NOT NULL,
`created_at` integer DEFAULT (unixepoch()) NOT NULL,
`updated_at` integer DEFAULT (unixepoch()) NOT NULL
);