Init: generated with claude-sonnet-4
This commit is contained in:
10
migrations/001_create_files_table.sql
Normal file
10
migrations/001_create_files_table.sql
Normal 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;
|
Reference in New Issue
Block a user