double quotes to single quotes on ancestries

merge-requests/35/merge
James R Miller 2019-08-18 14:55:49 -05:00
parent 5cb1acc2a5
commit 7ac219b7df
1 changed files with 8 additions and 8 deletions

View File

@ -9,14 +9,14 @@ PRAGMA foreign_keys = ON; -- database requires foreign key checking to be turned
INSERT INTO ancestries (ancestry_id, short_name, flavor_text, hp, size_id, speed, vision_id,sources_id,sources_pages) INSERT INTO ancestries (ancestry_id, short_name, flavor_text, hp, size_id, speed, vision_id,sources_id,sources_pages)
VALUES VALUES
(1, 'Dwarf', 'TODO', 10, 3, 20, 1,1,"35"), (1, 'Dwarf', 'TODO', 10, 3, 20, 1,1,'35'),
(2, 'Elf', 'TODO', 6, 3, 30, 2,1,"39"), (2, 'Elf', 'TODO', 6, 3, 30, 2,1,'39'),
(3, 'Gnome', 'TODO', 8, 2, 25, 2,1,"43"), (3, 'Gnome', 'TODO', 8, 2, 25, 2,1,'43'),
(4, 'Goblin', 'TODO', 6, 2, 25, 1,1,"47"), (4, 'Goblin', 'TODO', 6, 2, 25, 1,1,'47'),
(5, 'Halfling', 'TODO', 6, 2, 25, 3,1,"51"), (5, 'Halfling', 'TODO', 6, 2, 25, 3,1,'51'),
(6, 'Human', 'TODO', 8, 3, 25, 4,1,"55"), (6, 'Human', 'TODO', 8, 3, 25, 4,1,'55'),
(7, 'Half-Elf', 'TODO', 8, 3, 25, 4,1,"55"), (7, 'Half-Elf', 'TODO', 8, 3, 25, 4,1,'55'),
(8, 'Half-Orc', 'TODO', 8, 3, 25, 4,1,"55"); (8, 'Half-Orc', 'TODO', 8, 3, 25, 4,1,'55');
/* TODO insert remaining data into ancestries_boosts and ancestries_flaws */ /* TODO insert remaining data into ancestries_boosts and ancestries_flaws */