diff options
author | Florian Pritz <bluewind@xinu.at> | 2014-03-02 13:31:51 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2014-03-02 13:31:51 +0100 |
commit | 1b7ad30cc235cfc11c1c531c9e1396ca597e2351 (patch) | |
tree | b9603666ee62fe54b27c2a71a39f9b3fce92c573 | |
parent | 475c5d97fa48e3fdfbccc47d0b64b2cd71ab8a8e (diff) |
INSTALL: slightly improve SQL cmd
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | INSTALL | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -21,7 +21,6 @@ * Go to http://yourdomain.com/some/where/index.php/user/hash_password to generate a password hash -* Run the following SQL command - insert into users - (username, password, email, referrer) - values ("your_name", "hash_from_above", "you@foo.com", 0) +* Run the following SQL command in your database: + insert into users (username, password, email, referrer) + values ("your_name", "hash_from_above", "you@foo.com", 0); |