Missing backtick from RegionManager Group table.
Group is a reserved keyword in MySQL 8. Requires backtick. Missed this from previous commit. Version 8 would error on table creation.
This commit is contained in:
parent
5132a83e96
commit
e1da5aa7bc
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ namespace TShockAPI.DB
|
|||
new SqlColumn("WorldID", MySqlDbType.VarChar, 50) { Unique = true },
|
||||
new SqlColumn("UserIds", MySqlDbType.Text),
|
||||
new SqlColumn("Protected", MySqlDbType.Int32),
|
||||
new SqlColumn("Groups", MySqlDbType.Text),
|
||||
new SqlColumn("`Groups`", MySqlDbType.Text),
|
||||
new SqlColumn("Owner", MySqlDbType.VarChar, 50),
|
||||
new SqlColumn("Z", MySqlDbType.Int32){ DefaultValue = "0" }
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue