Last active
April 7, 2019 08:15
-
-
Save tanishiking/8c1b70c49219dee445bc29228d923ace 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 `blog` ( | |
`id` BIGINT UNSIGNED NOT NULL, | |
`title` VARCHAR(512) NOT NULL, | |
`content` TEXT NOT NULL, | |
PRIMARY KEY (id) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment