mirror of https://github.com/MISP/MISP
fix: Fixed no specification of the tinyint length for the objects in MYSQL.sql
parent
5c07fc3e68
commit
e9ac667afe
|
@ -439,7 +439,7 @@ CREATE TABLE IF NOT EXISTS objects (
|
||||||
`distribution` tinyint(4) NOT NULL DEFAULT 0,
|
`distribution` tinyint(4) NOT NULL DEFAULT 0,
|
||||||
`sharing_group_id` int(11),
|
`sharing_group_id` int(11),
|
||||||
`comment` text COLLATE utf8_bin NOT NULL,
|
`comment` text COLLATE utf8_bin NOT NULL,
|
||||||
`deleted` TINYINT NOT NULL DEFAULT 0,
|
`deleted` tinyint(1) NOT NULL DEFAULT 0,
|
||||||
PRIMARY KEY (id),
|
PRIMARY KEY (id),
|
||||||
INDEX `name` (`name`),
|
INDEX `name` (`name`),
|
||||||
INDEX `template_uuid` (`template_uuid`),
|
INDEX `template_uuid` (`template_uuid`),
|
||||||
|
|
Loading…
Reference in New Issue