Skip to content

Instantly share code, notes, and snippets.

@andreybolonin
Created June 3, 2017 11:55
Show Gist options
  • Save andreybolonin/fb88a4a4fe673b2c85f1a2e4a4dd9272 to your computer and use it in GitHub Desktop.
Save andreybolonin/fb88a4a4fe673b2c85f1a2e4a4dd9272 to your computer and use it in GitHub Desktop.
CREATE TABLE `article` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8 NOT NULL,
`description` text CHARACTER SET utf8 NOT NULL,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment