summaryrefslogtreecommitdiffstats
path: root/application/migrations/003_add_referrers.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/migrations/003_add_referrers.php')
-rw-r--r--application/migrations/003_add_referrers.php13
1 files changed, 5 insertions, 8 deletions
diff --git a/application/migrations/003_add_referrers.php b/application/migrations/003_add_referrers.php
index 1f6b966e3..9ca167eab 100644
--- a/application/migrations/003_add_referrers.php
+++ b/application/migrations/003_add_referrers.php
@@ -5,8 +5,7 @@ class Migration_Add_referrers extends CI_Migration {
public function up()
{
- if ($this->db->dbdriver == 'postgre')
- {
+ if ($this->db->dbdriver == 'postgre') {
$this->db->query('
CREATE TABLE "invitations" (
"user" integer NOT NULL,
@@ -21,9 +20,9 @@ class Migration_Add_referrers extends CI_Migration {
ALTER TABLE "users"
ADD "referrer" integer NOT NULL DEFAULT 0
');
- }
- else
- {
+
+ } else {
+
$this->db->query("
CREATE TABLE `invitations` (
`user` int(8) unsigned NOT NULL,
@@ -48,9 +47,7 @@ class Migration_Add_referrers extends CI_Migration {
$this->db->query('
ALTER TABLE "users" DROP "referrer"
');
- }
- else
- {
+ } else {
$this->db->query('
ALTER TABLE `users` DROP `referrer`
');