change column name, remove useless columns

This commit is contained in:
Vincent Riquer 2013-02-26 11:20:37 +01:00
parent 6d45a634b7
commit 611d4ad1af

View File

@ -9,14 +9,12 @@ CREATE TABLE source_files (
);
CREATE TABLE destinations (
id INTEGER PRIMARY KEY,
path TEXT UNIQUE NOT NULL
name TEXT UNIQUE NOT NULL
);
CREATE TABLE destination_files (
id INTEGER PRIMARY KEY,
filename TEXT UNIQUE NOT NULL,
last_change INTEGER NOT NULL DEFAULT (strftime('%s','now')),
to_delete NOT NULL DEFAULT 0,
update_needed NOT NULL DEFAULT 1,
source_file_id INTEGER,
destination_id INTEGER,
FOREIGN KEY (source_file_id) REFERENCES source_files(id),