Skip to content

Instantly share code, notes, and snippets.

@assertchris
Last active April 4, 2016 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save assertchris/83a1cb771d62fcb6d2fe to your computer and use it in GitHub Desktop.
Save assertchris/83a1cb771d62fcb6d2fe to your computer and use it in GitHub Desktop.
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'
);
@eburhan
Copy link

eburhan commented Mar 1, 2016

should NOT be a comma on the 11th line.

@lserveriiev
Copy link

you have error on 11 line

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment