Created
November 22, 2014 10:53
-
-
Save mozammel/05d29da6a03392a04de4 to your computer and use it in GitHub Desktop.
Spring Tutorial - Create Table Notices
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 `notices` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `name` varchar(100) NOT NULL, | |
| `email` varchar(60) NOT NULL, | |
| `text` text NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment