summaryrefslogtreecommitdiffstats
path: root/application/migrations/008_add_profiles.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2015-02-15 11:11:49 +0100
committerFlorian Pritz <bluewind@xinu.at>2015-02-15 11:11:49 +0100
commit45c16c802720faf9de6c3028ba41753c5edba974 (patch)
treee20148091cf0f9b6ff11efe65a76cfe1d1bad24c /application/migrations/008_add_profiles.php
parent9535ede862e01d834ebdd553184b1f6544b06d2c (diff)
parent01226a9afd760a920e9cb3377913ee296f0ab2ca (diff)
Merge branch 'api-rework' into working
Diffstat (limited to 'application/migrations/008_add_profiles.php')
-rw-r--r--application/migrations/008_add_profiles.php28
1 files changed, 16 insertions, 12 deletions
diff --git a/application/migrations/008_add_profiles.php b/application/migrations/008_add_profiles.php
index 9958fb03e..4cdd14de0 100644
--- a/application/migrations/008_add_profiles.php
+++ b/application/migrations/008_add_profiles.php
@@ -5,9 +5,11 @@ class Migration_Add_profiles extends CI_Migration {
public function up()
{
+ $prefix = $this->db->dbprefix;
+
if ($this->db->dbdriver == 'postgre') {
$this->db->query('
- CREATE TABLE "profiles" (
+ CREATE TABLE "'.$prefix.'profiles" (
"user" integer NOT NULL,
"upload_id_limits" varchar(255) NOT NULL,
PRIMARY KEY ("user")
@@ -15,42 +17,44 @@ class Migration_Add_profiles extends CI_Migration {
');
$this->db->query('
- ALTER TABLE "files" ALTER COLUMN "id" TYPE varchar(255);
+ ALTER TABLE "'.$prefix.'files" ALTER COLUMN "id" TYPE varchar(255);
');
} else {
- $this->db->query("
- CREATE TABLE `profiles` (
+ $this->db->query('
+ CREATE TABLE `'.$prefix.'profiles` (
`user` int(8) unsigned NOT NULL,
`upload_id_limits` varchar(255) COLLATE utf8_bin NOT NULL,
PRIMARY KEY (`user`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin
- ");
+ ');
- $this->db->query("
- ALTER TABLE `files` CHANGE `id` `id` VARCHAR( 255 );
- ");
+ $this->db->query('
+ ALTER TABLE `'.$prefix.'files` CHANGE `id` `id` VARCHAR( 255 );
+ ');
}
}
public function down()
{
+ $prefix = $this->db->dbprefix;
+
if ($this->db->dbdriver == 'postgre') {
$this->db->query('
- DROP TABLE "profiles";
+ DROP TABLE "'.$prefix.'profiles";
');
$this->db->query('
- ALTER TABLE "files" ALTER COLUMN "id" TYPE varchar(6);
+ ALTER TABLE "'.$prefix.'files" ALTER COLUMN "id" TYPE varchar(6);
');
} else {
$this->db->query("
- DROP TABLE `profiles`;
+ DROP TABLE `'.$prefix.'profiles`;
");
$this->db->query("
- ALTER TABLE `files` CHANGE `id` `id` VARCHAR( 6 );
+ ALTER TABLE `'.$prefix.'files` CHANGE `id` `id` VARCHAR( 6 );
");
}
}