Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
laur1s authored Sep 6, 2018
1 parent 75bd000 commit 38e0b85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ Form is using MySQL Prepared Statements and password encryption using SHA-256.
3. Create an users table according by running the following SQL commands:
1. `CREATE DATABASE db;`
2. `USE db;`
3. `CREATE TABLE IF NOT EXISTS `users` (
3. ```CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(100) NOT NULL,
`email` varchar(100) NOT NULL,
`password` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;`
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;```


## Use
Expand Down

0 comments on commit 38e0b85

Please sign in to comment.