import of the authorized values fails on the step 3 of the web-installation (ru-RU)
ERROR 1136 (21S01) at line 1: Column count doesn't match value count at row 1 modified: installer/data/mysql/ru-RU/authorised_values/authorised_values_[DAMAGED].csv.sql modified: installer/data/mysql/ru-RU/authorised_values/authorised_values_[LOST].csv.sql modified: installer/data/mysql/ru-RU/authorised_values/authorised_values_[NOT_LOAN].csv.sql modified: installer/data/mysql/ru-RU/authorised_values/authorised_values_[RESTRICTED].csv.sql modified: installer/data/mysql/ru-RU/authorised_values/authorised_values_[STACK].csv.sql modified: installer/data/mysql/ru-RU/authorised_values/authorised_values_[WITHDRAWN].csv.sql Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
This commit is contained in:
parent
c4fb8e1928
commit
809b89c816
6 changed files with 7 additions and 7 deletions
|
@ -1,3 +1,3 @@
|
|||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 0,'DAMAGED','0');
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 0,'DAMAGED','0','');
|
||||
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 1,'DAMAGED','1','Повреждено');
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 0,'LOST','0');
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 0,'LOST','0', '');
|
||||
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 1,'LOST','2','Длительная просрочка (утрачено)');
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 0,'NOT_LOAN','0');
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 0,'NOT_LOAN','0', '');
|
||||
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 1,'NOT_LOAN','1','Не для ссуды');
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 0,'RESTRICTED','0');
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 0,'RESTRICTED','0', '');
|
||||
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 1,'RESTRICTED','1','Ограниченный доступ');
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 0,'STACK','0');
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 1,'STACK','1','Особое собрание');
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 0,'STACK','0', '');
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 1,'STACK','1','Особое собрание');
|
|
@ -1,3 +1,3 @@
|
|||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 0,'WITHDRAWN','0');
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 0,'WITHDRAWN','0', '');
|
||||
|
||||
INSERT INTO `authorised_values` (`id`, `category`, `authorised_value`, `lib`) VALUES (LAST_INSERT_ID( ) + 1,'WITHDRAWN','1','Изъято');
|
||||
|
|
Loading…
Reference in a new issue