blob: 1f6b966e320cc7f93cd133ac860cbfc8f3db4a18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_Add_referrers extends CI_Migration {
public function up()
{
if ($this->db->dbdriver == 'postgre')
{
$this->db->query('
CREATE TABLE "invitations" (
"user" integer NOT NULL,
"key" character varying(16) NOT NULL,
"date" integer NOT NULL,
PRIMARY KEY ("key")
);
CREATE INDEX "invitations_user_idx" ON "invitations" ("user");
CREATE INDEX "invitations_date_idx" ON "invitations" ("date");
');
$this->db->query('
ALTER TABLE "users"
ADD "referrer" integer NOT NULL DEFAULT 0
');
}
else
{
$this->db->query("
CREATE TABLE `invitations` (
`user` int(8) unsigned NOT NULL,
`key` varchar(16) CHARACTER SET ascii NOT NULL,
`date` int(11) unsigned NOT NULL,
PRIMARY KEY (`key`),
KEY `user` (`user`),
KEY `date` (`date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin
");
$this->db->query("
ALTER TABLE `users`
ADD `referrer` INT(8) UNSIGNED NOT NULL DEFAULT '0'
");
}
}
public function down()
{
if ($this->db->dbdriver == 'postgre')
{
$this->db->query('
ALTER TABLE "users" DROP "referrer"
');
}
else
{
$this->db->query('
ALTER TABLE `users` DROP `referrer`
');
}
$this->dbforge->drop_table('invitations');
}
}
|