Skip to content

Instantly share code, notes, and snippets.

@otms61
Created January 4, 2015 05:48
Show Gist options
  • Save otms61/5bd3e61a40152b9bcece to your computer and use it in GitHub Desktop.
Save otms61/5bd3e61a40152b9bcece to your computer and use it in GitHub Desktop.
write up of todos
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