Files
wavelog/application/migrations/172_add_rac_bandxuser.php
2024-02-01 11:34:57 +01:00

24 lines
471 B
PHP

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