summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2014-04-12 18:58:08 +0200
committerFlorian Pritz <bluewind@xinu.at>2014-04-12 19:04:53 +0200
commit72a2e368c71cad39187d10f6ddaa69d6e8f4a8ba (patch)
treef41d4943b3583e7d597d45f0f4c18ae8bf41f96c /INSTALL
parentc49ba7354ee27fde980c7ff1722040232a3cb373 (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--INSTALL2
1 files changed, 1 insertions, 1 deletions
diff --git a/INSTALL b/INSTALL
index 3ca7bbe74..f63ee8e74 100644
--- a/INSTALL
+++ b/INSTALL
@@ -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);