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 -18
View File
@@ -1,21 +1,5 @@
# noinspection LongLineForFile
DROP TABLE IF EXISTS research;
CREATE TABLE IF NOT EXISTS research
(
level SMALLINT NOT NULL,
sk INT NOT NULL,
levelcap SMALLINT NOT NULL
);
INSERT INTO research
VALUES (0, 0, 0),
(1, 50, 1),
(2, 450, 50),
(3, 1600, 75),
(4, 4700, 100),
(5, 12750, 125),
(6, 32000, 150),
(7, 54000, 175),
(8, 64000, 190),
(9, 740000, 190),
(10, 900000, 200);
CREATE TABLE IF NOT EXISTS research (level SMALLINT NOT NULL, sk INT NOT NULL, levelcap SMALLINT NOT NULL);
INSERT INTO research VALUES (0,0,0), (1,50,1), (2,450,50), (3,1600,75), (4,4700,100), (5,12750,125), (6,32000,150), (7,54000,175), (8,64000,190), (9,740000,190), (10,900000,200);