Created
June 3, 2017 11:55
-
-
Save andreybolonin/fb88a4a4fe673b2c85f1a2e4a4dd9272 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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