@@ -494,7 +494,7 @@ data:
494
494
bigint(20) unsigned NOT NULL,\n `severity` enum('ok','warning','critical','unknown')
495
495
NOT NULL DEFAULT 'ok',\n `check_name` varchar(255) NOT NULL,\n `date` timestamp
496
496
/* mariadb-5.3 */ NOT NULL DEFAULT current_timestamp(),\n `last_check_time` timestamp
497
- /* mariadb-5.3 */ NOT NULL DEFAULT '0000-00-00 00:00:00',\n `message` varchar(255 )
497
+ /* mariadb-5.3 */ NOT NULL DEFAULT '0000-00-00 00:00:00',\n `message` varchar(512 )
498
498
DEFAULT NULL,\n PRIMARY KEY (`id`),\n KEY `date_index` (`date`)\n ) ENGINE=InnoDB
499
499
DEFAULT CHARSET=utf8mb4;\n /*!40101 SET character_set_client = @saved_cs_client
500
500
*/;\n\n --\n -- Table structure for table `hw_check_status`\n --\n\n DROP TABLE IF
@@ -1003,17 +1003,17 @@ data:
1003
1003
DEFAULT NULL,\n `iface` varchar(255) DEFAULT NULL,\n `present` tinyint(3) unsigned
1004
1004
NOT NULL DEFAULT 0,\n `status` varchar(255) DEFAULT NULL,\n `master_status`
1005
1005
varchar(100) DEFAULT NULL,\n `speed` varchar(255) DEFAULT NULL,\n `speed_desired`
1006
- enum('1000','10000','25000','40000','50000','100000','200000','400000','auto')
1006
+ enum('1000','10000','25000','40000','50000','100000','200000','400000','800000',' auto')
1007
1007
NOT NULL DEFAULT 'auto',\n `transceiver` varchar(255) DEFAULT NULL,\n `mtu`
1008
1008
int(10) NOT NULL DEFAULT 9216,\n `lacp` enum('on','off') NOT NULL DEFAULT 'off',\n
1009
1009
\ `port_extension` bigint(20) unsigned NOT NULL DEFAULT 0,\n `parent_port` bigint(20)
1010
1010
unsigned NOT NULL DEFAULT 0,\n `admin_down` enum('yes','no') DEFAULT 'no',\n
1011
1011
\ `autoneg` enum('none','on','off') DEFAULT 'none',\n `duplex` enum('full','half','none')
1012
1012
DEFAULT 'none',\n `breakout` enum('off', 'disabled', '4x10', '4x25', '2x50',
1013
- '4x50', '1x100', '2x100', '4x100', '2x200', '4x200', '2x400') DEFAULT 'off', \n
1014
- \ `mclag_id` int,\n `mclag_plink_id` bigint(20) unsigned,\n `created_date` timestamp
1015
- NOT NULL DEFAULT current_timestamp(),\n `modified_date` timestamp NULL DEFAULT
1016
- current_timestamp() ON UPDATE current_timestamp(),\n UNIQUE KEY `port_id_UNIQUE`
1013
+ '4x50', '1x100', '2x100', '4x100', '8x100',' 2x200', '4x200', '2x400') DEFAULT
1014
+ 'off', \n `mclag_id` int,\n `mclag_plink_id` bigint(20) unsigned,\n `created_date`
1015
+ timestamp NOT NULL DEFAULT current_timestamp(),\n `modified_date` timestamp NULL
1016
+ DEFAULT current_timestamp() ON UPDATE current_timestamp(),\n UNIQUE KEY `port_id_UNIQUE`
1017
1017
(`port_id`),\n KEY `port_switch_id_IDX` (`switch_id`) USING BTREE,\n KEY `mclag_idx`
1018
1018
(`mclag_id`),\n CONSTRAINT `mclag_plink_id_fkn_3` FOREIGN KEY (`mclag_plink_id`)
1019
1019
REFERENCES mclag_plink (`id`) ON DELETE RESTRICT ON UPDATE CASCADE\n ) ENGINE=InnoDB
0 commit comments