Created
June 10, 2019 16:41
-
-
Save paulobunga/a6744c89e76c9351b1921f26ffc323ae to your computer and use it in GitHub Desktop.
Create users table using the sql below
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(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, | |
`username` varchar(255) NOT NULL, | |
`password` varchar(255) NOT NULL, | |
`firstname` varchar(255) NOT NULL, | |
`lastname` varchar(255) NOT NULL); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment