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 /application/controllers | |
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 'application/controllers')
-rw-r--r-- | application/controllers/user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/controllers/user.php b/application/controllers/user.php index 7ebaa0b68..b4e2613ac 100644 --- a/application/controllers/user.php +++ b/application/controllers/user.php @@ -331,7 +331,7 @@ class User extends MY_Controller { $admininfo = $this->db->query(" SELECT email FROM users - WHERE referrer = 0 + WHERE referrer is null ORDER BY id asc LIMIT 1 ")->row_array(); |