This commit is contained in:
fbsanchez 2021-10-01 13:56:21 +02:00
parent d322d23203
commit be95b5ffd0
3 changed files with 6 additions and 0 deletions

View File

@ -49,6 +49,8 @@ CREATE TABLE IF NOT EXISTS `tncm_agent` (
CREATE TABLE IF NOT EXISTS `tncm_agent_templates` (
`id_agent` int(10) unsigned NOT NULL,
`id_template` bigint(20) unsigned NOT NULL,
`status` int(4) NOT NULL default '0',
`last_update` bigint(20) NOT NULL default '0',
PRIMARY KEY (`id_agent`, `id_template`),
FOREIGN KEY (`id_agent`) REFERENCES `tagente`(`id_agente`) ON UPDATE CASCADE ON DELETE CASCADE,
FOREIGN KEY (`id_template`) REFERENCES `tncm_template`(`id`) ON UPDATE CASCADE ON DELETE CASCADE

View File

@ -4142,6 +4142,8 @@ CREATE TABLE IF NOT EXISTS `tncm_agent` (
CREATE TABLE IF NOT EXISTS `tncm_agent_templates` (
`id_agent` int(10) unsigned NOT NULL,
`id_template` bigint(20) unsigned NOT NULL,
`status` int(4) NOT NULL default '0',
`last_update` bigint(20) NOT NULL default '0',
PRIMARY KEY (`id_agent`, `id_template`),
FOREIGN KEY (`id_agent`) REFERENCES `tagente`(`id_agente`) ON UPDATE CASCADE ON DELETE CASCADE,
FOREIGN KEY (`id_template`) REFERENCES `tncm_template`(`id`) ON UPDATE CASCADE ON DELETE CASCADE

View File

@ -4078,6 +4078,8 @@ CREATE TABLE IF NOT EXISTS `tncm_agent` (
CREATE TABLE IF NOT EXISTS `tncm_agent_templates` (
`id_agent` int(10) unsigned NOT NULL,
`id_template` bigint(20) unsigned NOT NULL,
`status` int(4) NOT NULL default '0',
`last_update` bigint(20) NOT NULL default '0',
PRIMARY KEY (`id_agent`, `id_template`),
FOREIGN KEY (`id_agent`) REFERENCES `tagente`(`id_agente`) ON UPDATE CASCADE ON DELETE CASCADE,
FOREIGN KEY (`id_template`) REFERENCES `tncm_template`(`id`) ON UPDATE CASCADE ON DELETE CASCADE