Merge branch '1598-Cron-jobs-y-permisos-dev' into 'develop'
Added group_id in cron job(mr and migrate) See merge request artica/pandorafms!1386
This commit is contained in:
commit
c5af972aeb
|
@ -4,4 +4,14 @@ UPDATE `tagente` SET `id_os` = 100 WHERE `id_os` = 21 and (select `id_os` from `
|
||||||
|
|
||||||
DELETE FROM `tconfig_os` where `id_os` = 21 and `name` = 'Cluster';
|
DELETE FROM `tconfig_os` where `id_os` = 21 and `name` = 'Cluster';
|
||||||
|
|
||||||
|
SET @st_oum721 = (SELECT IF(
|
||||||
|
(SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = DATABASE() AND table_name = 'tuser_task_scheduled') > 0,
|
||||||
|
"ALTER TABLE tuser_task_scheduled ADD (id_grupo int(10) unsigned NOT NULL Default 0)",
|
||||||
|
"0"
|
||||||
|
));
|
||||||
|
|
||||||
|
PREPARE pr_oum721 FROM @st_oum721;
|
||||||
|
EXECUTE pr_oum721;
|
||||||
|
DEALLOCATE PREPARE pr_oum721;
|
||||||
|
|
||||||
COMMIT;
|
COMMIT;
|
|
@ -1368,6 +1368,7 @@ END IF;
|
||||||
SET @vv2 = (SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = DATABASE() AND table_name = 'tuser_task_scheduled');
|
SET @vv2 = (SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = DATABASE() AND table_name = 'tuser_task_scheduled');
|
||||||
IF @vv2>0 THEN
|
IF @vv2>0 THEN
|
||||||
ALTER TABLE tuser_task_scheduled MODIFY args TEXT NOT NULL;
|
ALTER TABLE tuser_task_scheduled MODIFY args TEXT NOT NULL;
|
||||||
|
ALTER TABLE tuser_task_scheduled ADD (id_grupo int(10) unsigned NOT NULL Default 0);
|
||||||
END IF;
|
END IF;
|
||||||
END;
|
END;
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue