diff options
author | Rafael Bodill <rafi@sortex.co.il> | 2014-09-18 21:02:26 +0200 |
---|---|---|
committer | Rafael Bodill <rafi@sortex.co.il> | 2014-09-18 21:02:26 +0200 |
commit | 33f542487a89da4a8edad934b82aae7484f70ca3 (patch) | |
tree | 778650804404efa3546f71a0b49955f7eac43c57 /application/migrations/011_apikeys_add_access_level.php | |
parent | d2c309aee8189a5d6c2a3fcb0a05ea694d7b646e (diff) |
Migrations support for PostgreSQL
Diffstat (limited to 'application/migrations/011_apikeys_add_access_level.php')
-rw-r--r-- | application/migrations/011_apikeys_add_access_level.php | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/application/migrations/011_apikeys_add_access_level.php b/application/migrations/011_apikeys_add_access_level.php index e0f39317b..29a2f769b 100644 --- a/application/migrations/011_apikeys_add_access_level.php +++ b/application/migrations/011_apikeys_add_access_level.php @@ -5,15 +5,33 @@ class Migration_apikeys_add_access_level extends CI_Migration { public function up() { - $this->db->query(" - alter table `apikeys` add `access_level` varchar(255) default 'apikey'; - "); + if ($this->db->dbdriver == 'postgre') + { + $this->db->query(' + alter table "apikeys" add "access_level" varchar(255) default \'apikey\' + '); + } + else + { + $this->db->query(" + alter table `apikeys` add `access_level` varchar(255) default 'apikey'; + "); + } } public function down() { - $this->db->query(" - alter table `apikeys` drop `access_level`; - "); + if ($this->db->dbdriver == 'postgre') + { + $this->db->query(' + alter table "apikeys" drop "access_level" + '); + } + else + { + $this->db->query(' + alter table `apikeys` drop `access_level` + '); + } } } |