5 lines
409 B
SQL
5 lines
409 B
SQL
CREATE TABLE IF NOT EXISTS sheets (id integer primary key autoincrement, name TEXT, composer_id integer, path TEXT, file_size INTEGER, file_hash TEXT, last_opened INTEGER);
|
|
CREATE TABLE IF NOT EXISTS composers (id integer primary key autoincrement, name TEXT);
|
|
|
|
CREATE TABLE IF NOT EXISTS orphan_files (id integer primary key autoincrement, path TEXT, file_size INTEGER, file_hash TEXT, last_opened INTEGER);
|