Created
January 4, 2015 05:48
-
-
Save otms61/5bd3e61a40152b9bcece to your computer and use it in GitHub Desktop.
write up of todos
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 `todos` ( | |
`user` int(11) DEFAULT NULL, | |
`content` varchar(255) DEFAULT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
CREATE TABLE `users` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(255) DEFAULT NULL, | |
`salt` varchar(255) DEFAULT NULL, | |
`hash` varchar(255) DEFAULT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment