Skip to content
This repository was archived by the owner on Sep 23, 2022. It is now read-only.

Commit af8ba09

Browse files
authored
Update README.md
Updated
1 parent 1dda240 commit af8ba09

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ USE database_name_goes_here;
2323
To set the table up, create a MySQL table with the fields `name` and `password`, to do so run:
2424

2525
```MySQL
26-
CREATE TABLE users(name VARCHAR(30) NOT NULL, password VARCHAR(256) NOT NULL);
26+
CREATE TABLE users(name VARCHAR(30) NOT NULL, password VARCHAR(256) NOT NULL, commands VARCHAR(128));
2727
```
2828
Then put your desired username in the `name` field, and the password in the `password` field, to do so run:
2929
```MySQL
30-
INSERT INTO users VALUES("user_here","password goes here");
30+
INSERT INTO users VALUES("user_here","password goes here","");
3131
```
3232

33-
#NOTICE
33+
<b>NOTICE<b>
3434
The password must be PHP hashed, to do so, run:
3535

3636
```shell

0 commit comments

Comments
 (0)