feat: add sqlite database manager
This commit is contained in:
9
resources/migrations/001_create_files_table.sql
Normal file
9
resources/migrations/001_create_files_table.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE IF NOT EXISTS files (
|
||||
id TEXT PRIMARY KEY,
|
||||
name TEXT NOT NULL,
|
||||
file_name TEXT NOT NULL,
|
||||
path TEXT NOT NULL,
|
||||
size INTEGER NOT NULL,
|
||||
ext TEXT NOT NULL,
|
||||
created_at TEXT NOT NULL
|
||||
)
|
||||
Reference in New Issue
Block a user