diff options
author | Florian Pritz <bluewind@xinu.at> | 2014-04-12 18:58:08 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2014-04-12 19:04:53 +0200 |
commit | 72a2e368c71cad39187d10f6ddaa69d6e8f4a8ba (patch) | |
tree | f41d4943b3583e7d597d45f0f4c18ae8bf41f96c /INSTALL | |
parent | c49ba7354ee27fde980c7ff1722040232a3cb373 (diff) |
Add foreign keys to database
Changing the referrer value for the root admin from 0 to NULL to make
the foreign key check work.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,4 +23,4 @@ * 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); + values ("your_name", "hash_from_above", "you@foo.com", NULL); |