remove transfers table

This commit is contained in:
j 2016-02-15 17:00:17 +05:30
commit 045eb91be3
5 changed files with 36 additions and 62 deletions

View file

@ -64,13 +64,6 @@ CREATE TABLE person (
numberofnames INTEGER,
PRIMARY KEY (name)
);
CREATE TABLE transfer (
item_id VARCHAR(32) NOT NULL,
added DATETIME,
progress FLOAT,
PRIMARY KEY (item_id),
FOREIGN KEY(item_id) REFERENCES item (id)
);
CREATE TABLE find (
id INTEGER NOT NULL,
item_id VARCHAR(32),
@ -434,7 +427,6 @@ def update_database():
item.models.Find,
item.models.Item,
item.models.Sort,
item.models.Transfer,
item.models.user_items,
item.person.Person,
user.models.List,