Add: maestro_upgrade DB
This commit is contained in:
@@ -20,6 +20,17 @@ CREATE TABLE moty_maestro (
|
||||
MaestroTestID INT UNSIGNED
|
||||
);
|
||||
|
||||
CREATE TABLE moty_maestro_upgrade (
|
||||
MaestroUpgradeID INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||||
RegisteredAccountType INT UNSIGNED NOT NULL,
|
||||
RequestedAccountType INT UNSIGNED NOT NULL,
|
||||
RequestedDateTime DATETIME NOT NULL,
|
||||
Status INT UNSIGNED NOT NULL,
|
||||
MaestroID INT UNSIGNED NOT NULL,
|
||||
|
||||
FOREIGN KEY (MaestroID) REFERENCES moty_maestro(MaestroID)
|
||||
);
|
||||
|
||||
CREATE TABLE moty_player (
|
||||
PlayerID INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||||
MaestroID INT UNSIGNED NOT NULL,
|
||||
|
||||
Reference in New Issue
Block a user