· 6 years ago · Jun 13, 2019, 01:48 PM
1SQL query:
2
3-- --------------------------------------------------------
4
5--
6-- Table structure for table `d8_key_value`
7--
8
9CREATE TABLE IF NOT EXISTS `d8_key_value` (
10 `collection` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'A named collection of key and value pairs.'
11`value` longblob NOT NULL COMMENT 'The value.',
12 PRIMARY KEY (`collection`,`name`)
13) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Generic key-value storage table. See the state system for…';
14MySQL said: Documentation
15
16#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'longblob NOT NULL COMMENT 'The value.',
17 PRIMARY KEY (`collection`,`name`)
18) EN' at line 9