7152-devToTest_2414 #2228
|
@ -1980,10 +1980,10 @@ INSERT INTO `pbx`.`sip`(`user_id`, `extension`)
|
||||||
(5, 1102),
|
(5, 1102),
|
||||||
(9, 1201);
|
(9, 1201);
|
||||||
|
|
||||||
INSERT INTO `vn`.`professionalCategory` (`id`, `name`, `level`, `dayBreak`)
|
INSERT INTO `vn`.`professionalCategory` (`id`, `description`)
|
||||||
VALUES
|
VALUES
|
||||||
(1, 'employee', NULL, NULL),
|
(1, 'employee'),
|
||||||
(2, 'florist', NULL, NULL);
|
(2, 'florist');
|
||||||
|
|
||||||
INSERT INTO `vn`.`calendarType` (`id`, `description`, `hoursWeek`, `isPartial`)
|
INSERT INTO `vn`.`calendarType` (`id`, `description`, `hoursWeek`, `isPartial`)
|
||||||
VALUES
|
VALUES
|
||||||
|
|
|
@ -12,5 +12,5 @@ FROM (
|
||||||
`pc`.`id` = `b`.`workerBusinessProfessionalCategoryFk`
|
`pc`.`id` = `b`.`workerBusinessProfessionalCategoryFk`
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
WHERE `pc`.`name` = 'Aux ventas'
|
WHERE `pc`.`description` = 'Aux ventas'
|
||||||
GROUP BY `b`.`workerFk`
|
GROUP BY `b`.`workerFk`
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
ALTER TABLE vn.professionalCategory DROP COLUMN dayBreak, DROP COLUMN `level`;
|
||||||
|
ALTER TABLE vn.professionalCategory
|
||||||
|
CHANGE name description varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL;
|
Loading…
Reference in New Issue