Errata fix

This commit is contained in:
fbsanchez 2021-10-21 14:33:44 +02:00
parent df863c6057
commit 796a7125e1
2 changed files with 5 additions and 5 deletions

View File

@ -63,8 +63,8 @@ CREATE TABLE IF NOT EXISTS `tncm_template_scripts` (
CREATE TABLE IF NOT EXISTS `tncm_agent` (
`id_agent` int(10) unsigned NOT NULL,
`id_vendor` bigint(20) unsigned NOT NULL,
`id_model` bigint(20) unsigned NOT NULL,
`id_vendor` bigint(20) unsigned,
`id_model` bigint(20) unsigned,
`protocol` int unsigned not null default 0,
`cred_key` varchar(100),
`adv_key` varchar(100),

View File

@ -4155,8 +4155,8 @@ CREATE TABLE IF NOT EXISTS `tncm_template_scripts` (
-- ----------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS `tncm_agent` (
`id_agent` int(10) unsigned NOT NULL,
`id_vendor` bigint(20) unsigned NOT NULL,
`id_model` bigint(20) unsigned NOT NULL,
`id_vendor` bigint(20) unsigned,
`id_model` bigint(20) unsigned,
`protocol` int unsigned not null default 0,
`cred_key` varchar(100),
`adv_key` varchar(100),