Implemented basic recruiting

This commit is contained in:
2019-05-20 02:39:44 +10:00
parent fd0b60a589
commit 9d9c735938
4 changed files with 99 additions and 16 deletions
+2
View File
@@ -51,5 +51,7 @@ CREATE TABLE IF NOT EXISTS profiles (
spies INTEGER DEFAULT 0,
scientists INTEGER DEFAULT 0,
lastRecruitTime TIMESTAMP DEFAULT '2019-01-01 00:00:00',
CONSTRAINT FOREIGN KEY fk_accountId(accountId) REFERENCES accounts(id) ON UPDATE CASCADE ON DELETE CASCADE
);