Init: generated with claude-sonnet-4

This commit is contained in:
2025-08-08 11:13:35 +03:00
commit 40e207bdb2
10 changed files with 723 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
-- +goose Up
CREATE TABLE files (
id TEXT PRIMARY KEY,
type TEXT NOT NULL,
size INTEGER NOT NULL,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
);
-- +goose Down
DROP TABLE files;