Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save darbyluv2code/29d28eb911a5a1f3fc1b669911db2f28 to your computer and use it in GitHub Desktop.
Save darbyluv2code/29d28eb911a5a1f3fc1b669911db2f28 to your computer and use it in GitHub Desktop.
CREATE TABLE `employees` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`last_name` varchar(64) DEFAULT NULL,
`first_name` varchar(64) DEFAULT NULL,
`checkout_time` timestamp DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment