phpMyAdmin - ver 4.8.0.1 (latest).
I'm trying to create a table with json
column.
CREATE TABLE `book` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(200) NOT NULL,
`tags` json DEFAULT NULL, // line 4
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
Result - error in your SQL syntax... on line 4
When I go to Structure
tab of an existing table and trying to change column type - there is no such option in the list.
It seems that phpMyAdmin does not support this type of data.
What is the solution, pls?