Cloudlog/application/migrations/032_add_station_active.php

20 wiersze
506 B
PHP
Czysty Zwykły widok Historia

2019-09-23 15:34:18 +00:00
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_add_station_active extends CI_Migration {
public function up()
{
$fields = array(
'station_active tinyint(1) DEFAULT NULL',
);
$this->dbforge->add_column('station_profile', $fields);
}
public function down()
{
$this->dbforge->drop_column('station_profile', 'station_active');
}
}