Created
May 14, 2013 21:53
-
-
Save smolak/5579917 to your computer and use it in GitHub Desktop.
ZFCRUD Users DB table.
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 `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