Skip to content

Instantly share code, notes, and snippets.

@smolak
Created May 14, 2013 21:53
Show Gist options
  • Save smolak/5579917 to your computer and use it in GitHub Desktop.
Save smolak/5579917 to your computer and use it in GitHub Desktop.
ZFCRUD Users DB table.
CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`login` varchar(30) NOT NULL,
`password` varchar(128) NOT NULL,
`email` varchar(250) NOT NULL,
`date_created` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment