kopia lustrzana https://github.com/magicbug/Cloudlog
24 wiersze
712 B
PHP
24 wiersze
712 B
PHP
|
<?php
|
||
|
|
||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||
|
|
||
|
/*
|
||
|
* This migration creates a table called options which will hold global options needed within cloudlog
|
||
|
* removing the need for lots of configuration files.
|
||
|
*/
|
||
|
|
||
|
class Migration_changed_dxcc_tables_utf8mb4 extends CI_Migration {
|
||
|
|
||
|
public function up()
|
||
|
{
|
||
|
$this->db->query("ALTER TABLE dxcc_entities CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;");
|
||
|
$this->db->query("ALTER TABLE dxcc_exceptions CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;");
|
||
|
$this->db->query("ALTER TABLE dxcc_prefixes CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;");
|
||
|
}
|
||
|
|
||
|
public function down()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|