summaryrefslogtreecommitdiffstats
path: root/application/migrations/009_add_apikeys.php
blob: 7b1b5aa5879256e6f3eb6a51ec57c1d57095a45e (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
<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Migration_Add_apikeys extends CI_Migration {

	public function up()
	{
		if ($this->db->dbdriver == 'postgre')
		{
			$this->db->query('
				CREATE TABLE "apikeys" (
					"key" varchar(64) NOT NULL,
					"user" integer NOT NULL,
					"created" integer NOT NULL,
					"comment" varchar(255) NOT NULL,
					PRIMARY KEY ("key")
				);
				CREATE INDEX "apikeys_user_idx" ON "apikeys" ("user");
			');
		}
		else
		{
			$this->db->query("
				CREATE TABLE `apikeys` (
					`key` varchar(64) COLLATE utf8_bin NOT NULL,
					`user` int(8) unsigned NOT NULL,
					`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
					`comment` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
					PRIMARY KEY (`key`),
					KEY `user` (`user`)
				) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin
			");
		}
	}

	public function down()
	{
		$this->dbforge->drop_table('apikeys');
	}
}