Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Created July 30, 2019 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BMU-Verlag/8597841f160a5e8897c3318285aa54fa to your computer and use it in GitHub Desktop.
Save BMU-Verlag/8597841f160a5e8897c3318285aa54fa to your computer and use it in GitHub Desktop.
CREATE TABLE `guestbook` (
`id` int(3) NOT NULL auto_increment,
`name` varchar(65) NOT NULL default ”,
`email` varchar(65) NOT NULL default ”,
`comment` longtext NOT NULL,
PRIMARY KEY (`id`)
)
ENGINE=InnoDB
DEFAULT CHARSET=utf8
AUTO_INCREMENT=1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment