feat: add SQLite database with Drizzle ORM schema and migrations

This commit is contained in:
Siddharth Kumar Sah
2026-03-22 02:51:57 +08:00
parent 1e7fb11da0
commit a24c6dd014
11 changed files with 1433 additions and 2 deletions
@@ -0,0 +1,48 @@
CREATE TABLE `api_keys` (
`id` text PRIMARY KEY NOT NULL,
`user_id` text NOT NULL,
`key_hash` text NOT NULL,
`name` text DEFAULT 'Default API Key' NOT NULL,
`created_at` integer NOT NULL,
`last_used_at` integer,
FOREIGN KEY (`user_id`) REFERENCES `users`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE TABLE `jobs` (
`id` text PRIMARY KEY NOT NULL,
`type` text NOT NULL,
`status` text DEFAULT 'queued' NOT NULL,
`progress` real DEFAULT 0 NOT NULL,
`input_files` text NOT NULL,
`output_path` text,
`settings` text,
`error` text,
`created_at` integer NOT NULL,
`completed_at` integer
);
--> statement-breakpoint
CREATE TABLE `sessions` (
`id` text PRIMARY KEY NOT NULL,
`user_id` text NOT NULL,
`expires_at` integer NOT NULL,
`created_at` integer NOT NULL,
FOREIGN KEY (`user_id`) REFERENCES `users`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE TABLE `settings` (
`key` text PRIMARY KEY NOT NULL,
`value` text NOT NULL,
`updated_at` integer NOT NULL
);
--> statement-breakpoint
CREATE TABLE `users` (
`id` text PRIMARY KEY NOT NULL,
`username` text NOT NULL,
`password_hash` text NOT NULL,
`role` text DEFAULT 'user' NOT NULL,
`must_change_password` integer DEFAULT true NOT NULL,
`created_at` integer NOT NULL,
`updated_at` integer NOT NULL
);
--> statement-breakpoint
CREATE UNIQUE INDEX `users_username_unique` ON `users` (`username`);