[Advanced search] Added migration script.

pull/1212/head
Andreas 2021-09-25 20:13:06 +02:00
rodzic 97b5b1b2c8
commit 7979431d95
2 zmienionych plików z 15 dodań i 1 usunięć

Wyświetl plik

@ -21,7 +21,7 @@ $config['migration_enabled'] = TRUE;
| be upgraded / downgraded to.
|
*/
$config['migration_version'] = 70;
$config['migration_version'] = 79;
/*
|--------------------------------------------------------------------------

Wyświetl plik

@ -0,0 +1,14 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_add_queries_table extends CI_Migration
{
public function up()
{
$this->db->query("create table queries (id integer not null auto_increment, query text, description text, userid integer not null, primary key (id)) ENGINE=myisam DEFAULT CHARSET=utf8;");
}
public function down()
{
$this->db->query("");
}
}