Implement sheet path validation

This commit is contained in:
2024-02-02 17:27:24 +01:00
parent 0addc7c4b9
commit 4f65715967
5 changed files with 99 additions and 31 deletions

View File

@ -1,2 +1,2 @@
CREATE TABLE IF NOT EXISTS sheets (name TEXT, path TEXT, file_size INTEGER, file_hash TEXT);
CREATE TABLE IF NOT EXISTS composers (name TEXT, id INTEGER);
CREATE TABLE IF NOT EXISTS sheets (id integer primary key autoincrement, name TEXT, path TEXT, file_size INTEGER, file_hash TEXT);
CREATE TABLE IF NOT EXISTS composers (id integer primary key autoincrement, name TEXT);