xxxxxxxxxx
php artisan make:migration add_fcm_device_token_column_to_users_table --table=users
xxxxxxxxxx
$fields = array(
'preferences' => array('type' => 'TEXT')
);
$this->dbforge->add_column('table_name', $fields);
// Executes: ALTER TABLE table_name ADD preferences TEXT