fix some comments in wrong position after format

This commit is contained in:
Damien Elmes 2021-01-09 14:26:51 +10:00
parent 3dad3c90d0
commit c3b1266f47

View file

@ -1,9 +1,9 @@
CREATE TABLE media (
fname text NOT NULL PRIMARY KEY,
csum text,
-- null indicates deleted file
mtime int NOT NULL,
csum text,
-- zero if deleted
mtime int NOT NULL,
dirty int NOT NULL
) without rowid;
CREATE INDEX idx_media_dirty ON media (dirty)