3

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?

1 Answers1

0

Yes, you may upgrade from older to newer version - That's what I did on localhost several months ago.

As for me, MySQL Workbench did the trick smoothly and error free, please referrer to https://dev.mysql.com/doc/workbench/en/wb-migration-database-mysql.html

And if you experience any problem during migration, ask here and we may help you along the process.

Ganzert
  • 48
  • 4