mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
SQL: Auth db data type cleanup account_access, account_banned, ip_banned / Storage engine switched to InnoDB
This commit is contained in:
4
sql/updates/auth/2012_03_28_01_auth_account_access.sql
Normal file
4
sql/updates/auth/2012_03_28_01_auth_account_access.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
ALTER TABLE `account_access`
|
||||
CHANGE `id` `id` INT(10) UNSIGNED NOT NULL,
|
||||
ROW_FORMAT=DEFAULT ENGINE=INNODB;
|
||||
|
||||
4
sql/updates/auth/2012_03_28_02_auth_account_banned.sql
Normal file
4
sql/updates/auth/2012_03_28_02_auth_account_banned.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
ALTER TABLE `account_banned`
|
||||
CHANGE `id` `id` INT(10) UNSIGNED DEFAULT '0' NOT NULL COMMENT 'Account id',
|
||||
CHANGE `active` `active` TINYINT(3) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
ROW_FORMAT=DEFAULT ENGINE=INNODB;
|
||||
2
sql/updates/auth/2012_03_28_03_ip_banned.sql
Normal file
2
sql/updates/auth/2012_03_28_03_ip_banned.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE `ip_banned`
|
||||
ROW_FORMAT=DEFAULT ENGINE=INNODB;
|
||||
Reference in New Issue
Block a user