User_groups::down PHP Method

down() public method

------------------------------------------------------------------------
public down ( )
    function down()
    {
        $CI =& get_instance();
        $CI->load->dbforge();
        if ($CI->dbforge->drop_table('user_groups')) {
            if ($CI->migrate->verbose) {
                return "Dropping user_groups table...";
            }
        }
    }
User_groups