DROP TABLE IF EXISTS `cards`; | |
CREATE TABLE `cards` ( | |
`id` int(11) unsigned NOT NULL AUTO_INCREMENT, | |
`name` varchar(200) DEFAULT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
INSERT INTO `cards` ( | |
`id`, | |
`name`, | |
) VALUES ( | |
1, 'Mysterious Challenger' | |
), ( | |
2, 'Sludge Belcher' | |
), ( | |
3, 'Dr. Boom' | |
); |
This comment has been minimized.
This comment has been minimized.
you have error on 11 line |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
should NOT be a comma on the 11th line.