diff --git a/share/schema.sql b/share/schema.sql index 89ca5bf..be2888e 100644 --- a/share/schema.sql +++ b/share/schema.sql @@ -14,7 +14,7 @@ CREATE TABLE destinations ( CREATE TABLE destination_files ( id INTEGER PRIMARY KEY, filename TEXT, - last_change INTEGER NOT NULL DEFAULT (strftime('%s','now')), + last_change INTEGER NOT NULL DEFAULT 0, source_file_id INTEGER, destination_id INTEGER, FOREIGN KEY (source_file_id) REFERENCES source_files(id),