remove unnecessary index

This commit is contained in:
Pau 2022-11-25 07:08:54 +01:00
parent 15f14062ca
commit 724c1e6e8a
1 changed files with 0 additions and 1 deletions

View File

@ -2,7 +2,6 @@ CREATE TABLE `vn`.`stateI18n` (
`stateFk` tinyint(3) unsigned NOT NULL,
`lang` char(2) NOT NULL,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`stateFk`, `lang`),
KEY `stateFk` (`stateFk`),
CONSTRAINT `stateI18n_state_id` FOREIGN KEY (`stateFk`) REFERENCES `vn`.`state` (`id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8;