[Main menu] And nice to include the migration script as well.

这个提交包含在:
Andreas 2021-03-20 22:35:51 +01:00
父节点 997ae932ec
当前提交 31e8eb9ac6

查看文件

@ -0,0 +1,25 @@
<?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_add_user_hide_notes extends CI_Migration {
public function up()
{
$fields = array(
'user_show_notes integer DEFAULT 1',
);
$this->dbforge->add_column('users', $fields);
}
public function down()
{
$this->dbforge->drop_column('users', 'user_show_notes');
}
}