remove transfers table
This commit is contained in:
parent
acaeb203a1
commit
045eb91be3
5 changed files with 36 additions and 62 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue