Update tblWorldServerRegistration.sql

login server expects a "ServerTrusted" column
This commit is contained in:
gpanula 2014-02-17 19:45:47 -06:00
parent a503c1af97
commit d7f9cdf6b6

View File

@ -9,5 +9,6 @@ CREATE TABLE IF NOT EXISTS tblWorldServerRegistration (
ServerLastIPAddr varchar(15) NULL,
ServerAdminID integer NOT NULL,
Note varchar(300) NULL,
ServerTrusted int(11),
PRIMARY KEY (ServerID, ServerLongName)
) ENGINE=InnoDB;