Initial Release of IGNCore version 2.5
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
# noinspection LongLineForFile
|
||||
|
||||
DROP TABLE IF EXISTS Ability;
|
||||
CREATE TABLE IF NOT EXISTS Ability
|
||||
(
|
||||
AbilityID INT NOT NULL PRIMARY KEY,
|
||||
Name VARCHAR(20) NOT NULL
|
||||
);
|
||||
INSERT INTO Ability (AbilityID, Name)
|
||||
VALUES (1, 'Agility'),
|
||||
(2, 'Intelligence'),
|
||||
(3, 'Psychic'),
|
||||
(4, 'Sense'),
|
||||
(5, 'Stamina'),
|
||||
(6, 'Strength');
|
||||
Reference in New Issue
Block a user