mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-15 16:41:29 +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`),
|
PRIMARY KEY (`id`),
|
||||||
UNIQUE INDEX `instance_id` (`instance_id`)
|
UNIQUE INDEX `instance_id` (`instance_id`)
|
||||||
)
|
)
|
||||||
COLLATE='utf8mb4_general_ci'
|
COLLATE='latin1_swedish_ci'
|
||||||
ENGINE=InnoDB
|
ENGINE=InnoDB
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -36,7 +36,7 @@ CREATE TABLE `expedition_members` (
|
|||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
UNIQUE INDEX `expedition_id_character_id` (`expedition_id`, `character_id`)
|
UNIQUE INDEX `expedition_id_character_id` (`expedition_id`, `character_id`)
|
||||||
)
|
)
|
||||||
COLLATE='utf8mb4_general_ci'
|
COLLATE='latin1_swedish_ci'
|
||||||
ENGINE=InnoDB
|
ENGINE=InnoDB
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user