Requested changes
gitea/salix/pipeline/head There was a failure building this commit
Details
gitea/salix/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
8059e54a26
commit
15f14062ca
|
@ -1,10 +1,8 @@
|
||||||
CREATE TABLE `vn`.`stateI18n` (
|
CREATE TABLE `vn`.`stateI18n` (
|
||||||
`stateFk` tinyint(3) unsigned NOT NULL,
|
`stateFk` tinyint(3) unsigned NOT NULL,
|
||||||
`lang`
|
`lang` char(2) NOT NULL,
|
||||||
set
|
|
||||||
('en', 'es') NOT NULL,
|
|
||||||
`name` varchar(255) NOT NULL,
|
`name` varchar(255) NOT NULL,
|
||||||
PRIMARY KEY (`stateFk`, `lang`),
|
PRIMARY KEY (`stateFk`, `lang`),
|
||||||
KEY `stateFk` (`stateFk`),
|
KEY `stateFk` (`stateFk`),
|
||||||
CONSTRAINT `stateI18n_state_id` FOREIGN KEY (`stateFk`) REFERENCES `vn`.`state` (`id`) ON UPDATE CASCADE ON DELETE CASCADE
|
CONSTRAINT `stateI18n_state_id` FOREIGN KEY (`stateFk`) REFERENCES `vn`.`state` (`id`)
|
||||||
) ENGINE = InnoDB DEFAULT CHARSET = utf8;
|
) ENGINE = InnoDB DEFAULT CHARSET = utf8;
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
INSERT INTO `vn`.`state` (`name`,`order`,`alertLevel`,`code`,`sectorProdPriority`,`nextStateFk`,`isPreviousPreparable`,`isPicked`,`isPreparable`,`semaphore`,`isPrintable`,`isOK`,`graphCategory`,`isNotValidated`,`classColor`) VALUES
|
||||||
|
('Prep Cámara',6,1,'COOLER_PREPARATION',7,14,0,0,0,2,0,0,2,0,'warning');
|
||||||
|
|
||||||
INSERT INTO
|
INSERT INTO
|
||||||
`vn`.`stateI18n` (`stateFk`, `lang`, `name`)
|
`vn`.`stateI18n` (`stateFk`, `lang`, `name`)
|
||||||
VALUES
|
VALUES
|
||||||
|
|
Loading…
Reference in New Issue