I can’t import table schema for MySQL. The message is: “Error: could not parse create table statement.”
I got the schema from SQLyog and it looks like this:
CREATE TABLE examination
(
id
int(11) NOT NULL AUTO_INCREMENT,
name
varchar(255) NOT NULL DEFAULT ‘’,
description
varchar(512) NOT NULL DEFAULT ‘’,
examination_type_id
int(11) NOT NULL DEFAULT ‘0’,
laboratory_id
int(11) NOT NULL DEFAULT ‘0’,
order_by
int(11) NOT NULL DEFAULT ‘0’,
active
tinyint(4) NOT NULL DEFAULT ‘1’,
timestamping
timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (id
)
)
I would pay for this to work, it causes me so much time waste to enter the fields one by one