Skip to content

Instantly share code, notes, and snippets.

@sebgates
Created March 12, 2018 10:19
Show Gist options
  • Save sebgates/5f12ef7453164df133aa4a98a0f5d361 to your computer and use it in GitHub Desktop.
Save sebgates/5f12ef7453164df133aa4a98a0f5d361 to your computer and use it in GitHub Desktop.
CREATE TABLE IF NOT EXISTS `tbl_users` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`user_name` varchar(25) NOT NULL,
`user_password` varchar(255) NOT NULL,
PRIMARY KEY (`user_id`)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment