mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 02:11:30 +00:00
Change all expedition tables to latin1
The lockout tables are latin1 to support older MySQL and MariaDB versions that limit indexes
This commit is contained in:
parent
ad51de052c
commit
b68994f25c
@ -11,7 +11,7 @@ CREATE TABLE `expedition_details` (
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE INDEX `instance_id` (`instance_id`)
|
||||
)
|
||||
COLLATE='utf8mb4_general_ci'
|
||||
COLLATE='latin1_swedish_ci'
|
||||
ENGINE=InnoDB
|
||||
;
|
||||
|
||||
@ -36,7 +36,7 @@ CREATE TABLE `expedition_members` (
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE INDEX `expedition_id_character_id` (`expedition_id`, `character_id`)
|
||||
)
|
||||
COLLATE='utf8mb4_general_ci'
|
||||
COLLATE='latin1_swedish_ci'
|
||||
ENGINE=InnoDB
|
||||
;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user