pathfinder-2-sqlite-MIRROR/deprecated/deprecated-old-sql-data-files/abilityscores.sql

16 lines
498 B
MySQL
Raw Normal View History

2019-08-05 22:55:19 -04:00
-- -*- mode:sql sql-product:sqlite -*-
2019-08-15 00:00:46 -04:00
PRAGMA foreign_keys = ON; -- database requires foreign key checking to be turned
-- on PER CONNECTION
2019-08-05 22:55:19 -04:00
INSERT INTO abilityscores (abilityscores_id, flag_rep, short_name, long_name)
VALUES
(1, 1, 'STR', 'Strength'),
(2, 2, 'DEX', 'Dexterity'),
(3, 4, 'CON', 'Constitution'),
(4, 8, 'INT', 'Intelligence'),
(5, 16, 'WIS', 'Wisdom'),
(6, 32, 'CHA', 'Charisma'),
(7, 64, 'Free1', 'Free 1'),
(8, 128, 'Free2', 'Free 2');