confetti-box/migrations/2025-05-22-234448_create_files/up.sql
2025-05-24 17:52:41 -04:00

10 lines
249 B
SQL

-- Your SQL goes here
CREATE TABLE mochifiles (
mmid TEXT PRIMARY KEY NOT NULL,
name TEXT NOT NULL,
mime_type TEXT NOT NULL,
hash BLOB NOT NULL,
upload_datetime DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
expiry_datetime DATETIME NOT NULL
)