Files
SnapOtter/apps/api/drizzle/0004_married_forgotten_one.sql
T
Siddharth Kumar Sah dda37e90cc feat(db): add userFiles table and migration
Introduces the user_files table to track uploaded files per user,
including metadata fields for dimensions, versioning, and tool chains.
2026-03-26 01:10:50 +08:00

16 lines
432 B
SQL

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
);