mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-18 12:28:31 +01:00
Store the schema version to make updates easier
This commit is contained in:
parent
63d7afb404
commit
9503c3c449
@ -30,3 +30,9 @@ CREATE TABLE songs (
|
||||
ctime INTEGER NOT NULL,
|
||||
filesize INTEGER NOT NULL
|
||||
);
|
||||
|
||||
|
||||
CREATE TABLE schema_version (
|
||||
version INTEGER NOT NULL
|
||||
);
|
||||
INSERT INTO schema_version (version) VALUES (0);
|
||||
|
Loading…
Reference in New Issue
Block a user