blob: 726a186010a0ce11cc6fc2dd88367ca4fafc6f18 (
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
|
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_allow_ipv6_storage extends CI_Migration {
public function up()
{
$prefix = $this->db->dbprefix;
if ($this->db->dbdriver == 'postgre') {
$this->db->query('
ALTER TABLE "'.$prefix.'ci_sessions"
ALTER COLUMN "ip_address" type varchar(39);
');
} else {
$this->db->query('
ALTER TABLE `'.$prefix.'ci_sessions`
CHANGE `ip_address` `ip_address` varchar(39);
');
}
}
public function down()
{
throw new \exceptions\ApiException("migration/downgrade-not-supported", "downgrade not supported");
}
}
|