diff --git a/sevenkeys/database/sql/createdb.sql b/sevenkeys/database/sql/createdb.sql index 8446caa..2d6b9a1 100644 --- a/sevenkeys/database/sql/createdb.sql +++ b/sevenkeys/database/sql/createdb.sql @@ -29,6 +29,7 @@ CREATE TABLE IF NOT EXISTS CardStorageLocation ( Id INT AUTO_INCREMENT PRIMARY KEY, CardPrintingId VARCHAR(37) NOT NULL, FOREIGN KEY (CardPrintingId) REFERENCES CardPrinting(Id), + CardCondition ENUM('Mint', 'Near Mint', 'Excellent', 'Good', 'Light Played', 'Played', 'Poor') NOT NULL, StorageBox VARCHAR(20) NOT NULL, Position INT NOT NULL, Source VARCHAR(100) NULL