Last active
September 8, 2018 08:56
-
-
Save amsokol/245f734d10a410bf2701e4c9482c9ceb to your computer and use it in GitHub Desktop.
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 `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