remove (potentially) harmful constraints on destination_files.filename

This commit is contained in:
Vincent Riquer 2013-02-26 11:21:47 +01:00
parent 611d4ad1af
commit b1e35f038a

View File

@ -13,7 +13,7 @@ CREATE TABLE destinations (
);
CREATE TABLE destination_files (
id INTEGER PRIMARY KEY,
filename TEXT UNIQUE NOT NULL,
filename TEXT,
last_change INTEGER NOT NULL DEFAULT (strftime('%s','now')),
source_file_id INTEGER,
destination_id INTEGER,