I\'m trying to import this sql in my database name symfony
CREATE TABLE IF NOT EXISTS ingredient (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255)
What worked for me was:
.frm
file. The files .MYD
and .MYI
are missing for empty tables. .frm
file.The old version of xampp created tables in MyISAM format the new version as InnoDB!