Cloudlog/application/migrations/156_add_waja_bandxuser.php

24 wiersze
487 B
PHP

<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Migration_add_waja_bandxuser extends CI_Migration
{
public function up()
{
$fields = array(
'waja TINYINT NOT NULL DEFAULT 1',
);
if (!$this->db->field_exists('clublogrealtime', 'bandxuser')) {
$this->dbforge->add_column('bandxuser', $fields);
}
}
public function down()
{
if ($this->db->field_exists('waja', 'bandxuser')) {
$this->dbforge->drop_column('bandxuser', 'waja');
}
}
}