-- +goose Up CREATE TABLE files ( id TEXT PRIMARY KEY, storage TEXT NOT NULL, file_name TEXT NOT NULL, size INTEGER NOT NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP ); -- +goose Down DROP TABLE files;