| Current Path : /home/users/unlimited/www/eshop.codeskitter.site/application/migrations/ |
| Current File : /home/users/unlimited/www/eshop.codeskitter.site/application/migrations/003_cash_collection.php |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Migration_cash_collection extends CI_Migration
{
public function up()
{
/* adding new fields in orders table */
$fields = array(
'cash_received' => array(
'type' => 'DOUBLE',
'constraint' => '15,2',
'NULL' => FALSE,
'default' => 0.00,
'after' => 'bonus'
)
);
$this->dbforge->add_column('users', $fields);
}
public function down()
{
// Drop columns
$this->dbforge->drop_column('users', 'cash_received');
}
}