| Current Path : /home/users/unlimited/www/eshop.codeskitter.site/application/migrations/ |
| Current File : /home/users/unlimited/www/eshop.codeskitter.site/application/migrations/013_driving_license.php |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Migration_driving_license extends CI_Migration
{
public function up()
{
/* adding new table user_fcm */
$this->dbforge->add_field([
'id' => [
'type' => 'INT',
'constraint' => '11',
'auto_increment' => TRUE,
'NULL' => FALSE
],
'fcm_id' => [
'type' => 'VARCHAR',
'constraint' => '1024',
'NULL' => FALSE
],
'date_added TIMESTAMP default CURRENT_TIMESTAMP',
]);
$this->dbforge->add_key('id', TRUE);
$this->dbforge->create_table('user_fcm');
$fields = array(
'driving_license' => array(
'type' => 'VARCHAR',
'constraint' => '1024',
'NULL' => TRUE,
'default' => 'NULL',
'after' => 'type'
),
);
$this->dbforge->add_column('users', $fields);
$fields = array(
'seller_id' => array(
'type' => 'INT',
'constraint' => '11',
'NULL' => FALSE,
'after' => 'user_id'
),
);
$this->dbforge->add_column('product_faqs', $fields);
}
public function down()
{
$this->dbforge->drop_table('user_fcm');
$this->dbforge->drop_column('users', 'driving_license');
$this->dbforge->drop_column('product_faqs', 'seller_id');
}
}