This commit is contained in:
fbsanchez 2021-11-29 10:32:54 +01:00
parent 5197d08aa3
commit 68c2400b9c
2 changed files with 4 additions and 4 deletions

View File

@ -19,8 +19,8 @@ CREATE TABLE IF NOT EXISTS `tncm_snippet` (
CREATE TABLE IF NOT EXISTS `tncm_firmware` (
`id` SERIAL,
`name` text,
`shortname` text,
`name` varchar(255),
`shortname` varchar(255) unique,
`vendor` bigint(20) unsigned,
`models` text,
`path` text,

View File

@ -4176,8 +4176,8 @@ CREATE TABLE IF NOT EXISTS `tncm_snippet` (
-- ----------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS `tncm_firmware` (
`id` SERIAL,
`name` text,
`shortname` text,
`name` varchar(255),
`shortname` varchar(255) unique,
`vendor` bigint(20) unsigned,
`models` text,
`path` text,