Add: maestro account extension html, make db
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user