|
@@ -576,7 +576,8 @@ CREATE TABLE k_rune_craft_type(
|
|
|
name TEXT NOT NULL UNIQUE,
|
|
name TEXT NOT NULL UNIQUE,
|
|
|
gem INT NOT NULL CHECK(gem IN (1, 0)),
|
|
gem INT NOT NULL CHECK(gem IN (1, 0)),
|
|
|
inmemorial INT NOT NULL CHECK(inmemorial IN (1, 0)),
|
|
inmemorial INT NOT NULL CHECK(inmemorial IN (1, 0)),
|
|
|
- ancient INT NOT NULL CHECK(ancient IN (1, 0))
|
|
|
|
|
|
|
+ ancient INT NOT NULL CHECK(ancient IN (1, 0)),
|
|
|
|
|
+ amount INT NOT NULL CHECK(amount > 0)
|
|
|
);
|
|
);
|
|
|
INSERT INTO k_rune_craft_type VALUES(1,'Enchant Gem',1,0,0);
|
|
INSERT INTO k_rune_craft_type VALUES(1,'Enchant Gem',1,0,0);
|
|
|
INSERT INTO k_rune_craft_type VALUES(2,'Grindstone',0,0,0);
|
|
INSERT INTO k_rune_craft_type VALUES(2,'Grindstone',0,0,0);
|