Also: Dont even *try* to use the "Rearrange Code" feature of your IDE, unless you rewrite the db.py
This commit is contained in:
@@ -1,15 +1,5 @@
|
||||
# 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');
|
||||
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