feat: update template

This commit is contained in:
2026-08-19 22:05:49 +08:00
parent 0e674e9d56
commit 5a71093b0c
67 changed files with 2070 additions and 585 deletions

View File

@@ -0,0 +1,9 @@
CREATE TABLE file_image_metadata
(
id INTEGER PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
file_id INTEGER UNIQUE NOT NULL,
width INTEGER NOT NULL,
height INTEGER NOT NULL,
format TEXT NOT NULL,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);