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

class Migration_Add_users extends CI_Migration {

	public function up()
	{
		$this->db->query("
			CREATE TABLE IF NOT EXISTS `users` (
			  `id` int(8) UNSIGNED NOT NULL AUTO_INCREMENT,
			  `username` varchar(32) COLLATE ascii_general_ci NOT NULL,
			  `password` varchar(60) COLLATE ascii_general_ci NOT NULL,
			  `email` varchar(255) COLLATE ascii_general_ci NOT NULL,
			  PRIMARY KEY (`id`)
			) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
		");

		$this->db->query("
			CREATE TABLE IF NOT EXISTS `ci_sessions` (
				`session_id` varchar(40) NOT NULL DEFAULT '0',
				`ip_address` varchar(16) NOT NULL DEFAULT '0',
				`user_agent` varchar(120) NOT NULL,
				`last_activity` int(10) unsigned NOT NULL DEFAULT '0',
				`user_data` text NOT NULL,
				PRIMARY KEY (`session_id`),
				KEY `last_activity_idx` (`last_activity`)
			) ENGINE=InnoDB DEFAULT CHARSET=utf8;
		");

		$this->db->query("
			ALTER TABLE `files`
			ADD `user` INT(8) UNSIGNED NOT NULL DEFAULT '0',
			ADD INDEX (`user`)
		");
	}

	public function down()
	{
		$this->dbforge->drop_table('users');
		$this->dbforge->drop_table('ci_sessions');
		$this->db->query("
			ALTER TABLE `files`
			DROP `user`
		");
	}
}