vaguely working upload/download implementation
This commit is contained in:
1
db/migrations/2022-01-16-214545_initial/down.sql
Normal file
1
db/migrations/2022-01-16-214545_initial/down.sql
Normal file
@ -0,0 +1 @@
|
||||
DROP TABLE uploads;
|
5
db/migrations/2022-01-16-214545_initial/up.sql
Normal file
5
db/migrations/2022-01-16-214545_initial/up.sql
Normal file
@ -0,0 +1,5 @@
|
||||
CREATE TABLE uploads (
|
||||
id TEXT PRIMARY KEY NOT NULL,
|
||||
name TEXT,
|
||||
created_at INTEGER
|
||||
);
|
Reference in New Issue
Block a user