Refs #362, Support abstracts

Forget changed userdata schema
This commit is contained in:
Dan Stillman 2006-12-07 00:46:30 +00:00
parent 5876debd36
commit 64e4fc0a57

View File

@ -1,4 +1,4 @@
-- 12 -- 13
-- This file creates tables containing user-specific data -- any changes -- This file creates tables containing user-specific data -- any changes
-- to existing tables made here must be mirrored in transition steps in -- to existing tables made here must be mirrored in transition steps in
@ -80,6 +80,7 @@ CREATE TABLE IF NOT EXISTS itemNotes (
itemID INT, itemID INT,
sourceItemID INT, sourceItemID INT,
note TEXT, note TEXT,
isAbstract INT DEFAULT NULL,
PRIMARY KEY (itemID), PRIMARY KEY (itemID),
FOREIGN KEY (itemID) REFERENCES items(itemID), FOREIGN KEY (itemID) REFERENCES items(itemID),
FOREIGN KEY (sourceItemID) REFERENCES items(itemID) FOREIGN KEY (sourceItemID) REFERENCES items(itemID)