Removed yesterdays work decided against its method of implimentation

这个提交包含在:
Peter Goodhall 2019-09-23 16:27:10 +01:00
父节点 50544cfb05
当前提交 e15f3cdde2
共有 4 个文件被更改,包括 34 次插入17 次删除

查看文件

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

查看文件

@ -0,0 +1,16 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_delete_logbooks_table extends CI_Migration {
public function up()
{
$this->dbforge->drop_table('logbooks');
}
public function down()
{
echo "not possible";
}
}

查看文件

@ -0,0 +1,17 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_delete_logbookid extends CI_Migration {
public function up()
{
$this->dbforge->drop_column($this->config->item('table_name'), 'logbook_id');
}
public function down()
{
echo "not possible";
}
}

查看文件

@ -1,16 +0,0 @@
<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
This controller will contain features for managing incoming QSL cards
*/
class User_Logbooks extends CI_Controller {
public function index()
{
echo 'Functions to come';
}
}