Initial Release of IGNCore version 2.5

This commit is contained in:
2021-08-09 13:18:56 +02:00
commit a83d98c47e
910 changed files with 224171 additions and 0 deletions
@@ -0,0 +1,23 @@
# 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');