Not able to find what is the error in this MySQL query.
Error : #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near...
CREATE TABLE IF NOT EXISTS `files` (
`id` int(255) NOT NULL AUTO_INCREMENT,
`root` varchar(255) NOT NULL,
`name` text NOT NULL,
`slug` text NOT NULL,
PRIMARY KEY (`id`)
)
INSERT INTO 'files' ('root', 'name') VALUES ('jvfs2rbpmasor7','Boxes_Teal.png');