Also: Dont even *try* to use the "Rearrange Code" feature of your IDE, unless you rewrite the db.py

This commit is contained in:
2021-08-09 13:57:22 +02:00
parent 391ed747d3
commit 80b5a4b577
39 changed files with 95 additions and 181271 deletions
+2 -12
View File
@@ -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');