Skip to content

Instantly share code, notes, and snippets.

@mozammel
Created November 22, 2014 10:53
Show Gist options
  • Select an option

  • Save mozammel/05d29da6a03392a04de4 to your computer and use it in GitHub Desktop.

Select an option

Save mozammel/05d29da6a03392a04de4 to your computer and use it in GitHub Desktop.
Spring Tutorial - Create Table Notices
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