mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
20 lines
369 B
PHP
20 lines
369 B
PHP
<?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;');
|
|
}
|
|
}
|
|
|