This commit is contained in:
Paminger
2016-02-29 16:51:21 +01:00
parent 2236ba7d26
commit eb84022abf
85 changed files with 12852 additions and 0 deletions
@@ -0,0 +1,19 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_Init extends CI_Migration {
public function up()
{
// Schemas
//$this->db->query('CREATE SCHEMA IF NOT EXISTS gis;');
}
public function down()
{
//$this->db->query('DROP SCHEMA IF EXISTS gis;');
}
}