Add: maestro account extension html, make db

This commit is contained in:
2019-10-17 13:57:11 +09:00
parent 84eaa7989a
commit 65ec3e040c
3 changed files with 71 additions and 114 deletions
+10
View File
@@ -32,6 +32,16 @@ CREATE TABLE maestro_upgrade (
FOREIGN KEY (MaestroID) REFERENCES maestro(MaestroID)
);
CREATE TABLE maestro_extension (
MaestroExtensionID INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
AccountType INT UNSIGNED NOT NULL,
RequestedDateTime DATETIME NOT NULL,
Status INT UNSIGNED NOT NULL,
MaestroID INT UNSIGNED NOT NULL,
FOREIGN KEY (MaestroID) REFERENCES maestro(MaestroID)
);
CREATE TABLE player (
PlayerID INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
MaestroID INT UNSIGNED NOT NULL,