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 -20
View File
@@ -1,23 +1,5 @@
# noinspection LongLineForFile
DROP TABLE IF EXISTS Profession;
CREATE TABLE IF NOT EXISTS Profession
(
ID INT NOT NULL PRIMARY KEY,
Name VARCHAR(20) NOT NULL
);
INSERT INTO Profession (ID, Name)
VALUES (1, 'Adventurer'),
(2, 'Agent'),
(3, 'Bureaucrat'),
(4, 'Doctor'),
(5, 'Enforcer'),
(6, 'Engineer'),
(7, 'Fixer'),
(8, 'Keeper'),
(9, 'Martial Artist'),
(10, 'Meta-Physicist'),
(11, 'Nano-Technician'),
(12, 'Shade'),
(13, 'Soldier'),
(14, 'Trader');
CREATE TABLE IF NOT EXISTS Profession (ID INT NOT NULL PRIMARY KEY, Name VARCHAR(20) NOT NULL);
INSERT INTO Profession (ID, Name) VALUES (1,'Adventurer'), (2,'Agent'), (3,'Bureaucrat'), (4,'Doctor'), (5,'Enforcer'), (6,'Engineer'), (7,'Fixer'), (8,'Keeper'), (9,'Martial Artist'), (10,'Meta-Physicist'), (11,'Nano-Technician'), (12,'Shade'), (13,'Soldier'), (14,'Trader');