Skip to content

Instantly share code, notes, and snippets.

@amsokol
Last active September 8, 2018 08:56
Show Gist options
  • Save amsokol/245f734d10a410bf2701e4c9482c9ceb to your computer and use it in GitHub Desktop.
Save amsokol/245f734d10a410bf2701e4c9482c9ceb to your computer and use it in GitHub Desktop.
CREATE TABLE `ToDo` (
`ID` bigint(20) NOT NULL AUTO_INCREMENT,
`Title` varchar(200) DEFAULT NULL,
`Description` varchar(1024) DEFAULT NULL,
`Reminder` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `ID_UNIQUE` (`ID`)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment