-
-
Save assertchris/83a1cb771d62fcb6d2fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
should NOT be a comma on the 11th line.