Files
SnapOtter/apps/api/drizzle-sqlite-legacy/0004_married_forgotten_one.sql
T

16 lines
432 B
SQL
Raw Normal View History

2026-03-25 01:13:25 +08:00
CREATE TABLE `user_files` (
`id` text PRIMARY KEY NOT NULL,
`user_id` text,
`original_name` text NOT NULL,
`stored_name` text NOT NULL,
`mime_type` text NOT NULL,
`size` integer NOT NULL,
`width` integer,
`height` integer,
`version` integer DEFAULT 1 NOT NULL,
`parent_id` text,
`tool_chain` text,
`created_at` integer NOT NULL,
FOREIGN KEY (`user_id`) REFERENCES `users`(`id`) ON UPDATE no action ON DELETE cascade
);