mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-23 01:59:14 +00:00
16 lines
329 B
PHP
16 lines
329 B
PHP
<?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";
|
|
}
|
|
} |