summaryrefslogtreecommitdiffstats
path: root/application/migrations/010_files_innodb.php
blob: 318314bd3a870268532ac7e0f79ade36fc3e4e1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Migration_files_innodb extends CI_Migration {

	public function up()
	{
		if ($this->db->dbdriver != 'postgre') {
			$this->db->query("
				ALTER TABLE `files` ENGINE = InnoDB;
			");
		}
	}

	public function down()
	{
	}
}