Skip to content

Instantly share code, notes, and snippets.

@paulobunga
Created June 10, 2019 16:41
Show Gist options
  • Save paulobunga/a6744c89e76c9351b1921f26ffc323ae to your computer and use it in GitHub Desktop.
Save paulobunga/a6744c89e76c9351b1921f26ffc323ae to your computer and use it in GitHub Desktop.
Create users table using the sql below
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