2021-09-20 21:16:53 +08:00
|
|
|
<?php
|
|
|
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
|
|
|
|
|
|
class Migration_add_userid_to_api extends CI_Migration
|
|
|
|
|
{
|
|
|
|
|
public function up()
|
|
|
|
|
{
|
|
|
|
|
$fields = array(
|
|
|
|
|
'user_id BIGINT(20) DEFAULT NULL',
|
|
|
|
|
);
|
|
|
|
|
|
2021-10-06 18:16:54 +08:00
|
|
|
if (!$this->db->field_exists('user_id', 'api')) {
|
|
|
|
|
$this->dbforge->add_column('api', $fields);
|
|
|
|
|
}
|
2021-09-20 21:16:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function down()
|
|
|
|
|
{
|
|
|
|
|
$this->dbforge->drop_column('api', 'user_id');
|
|
|
|
|
}
|
|
|
|
|
}
|