47 lines
1.9 KiB
PHP
47 lines
1.9 KiB
PHP
<?php
|
|
|
|
use think\migration\Migrator;
|
|
use think\migration\db\Column;
|
|
|
|
class UserBank extends Migrator
|
|
{
|
|
/**
|
|
* Change Method.
|
|
*
|
|
* Write your reversible migrations using this method.
|
|
*
|
|
* More information on writing migrations is available here:
|
|
* http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
|
|
*
|
|
* The following commands can be used in this method and Phinx will
|
|
* automatically reverse them when rolling back:
|
|
*
|
|
* createTable
|
|
* renameTable
|
|
* addColumn
|
|
* renameColumn
|
|
* addIndex
|
|
* addForeignKey
|
|
*
|
|
* Remember to call "create()" or "update()" and NOT "save()" when working
|
|
* with the Table class.
|
|
*/
|
|
public function change()
|
|
{
|
|
$table = $this->table('user_bank',['engine'=>'Innodb', 'comment' => '用户银行卡','collation'=>'utf8mb4_general_ci' , 'signed' => false]);
|
|
$table->addColumn(Column::unsignedInteger('bank_id')->setComment('关联银行ID'))
|
|
->addColumn(Column::unsignedInteger('user_id')->setComment('关联用户ID'))
|
|
->addColumn(Column::string('bank_owner',20)->setComment('卡主')->setDefault(0))
|
|
->addColumn(Column::unsignedInteger('district_id')->setComment('区县ID'))
|
|
->addColumn(Column::string('bank_num',20)->setComment('银行账号'))
|
|
->addColumn(Column::tinyInteger('status')->setComment('状态')->setDefault(1))
|
|
->addColumn(Column::string('remark')->setComment('状态说明')->setNullable())
|
|
->addColumn(Column::unsignedInteger('create_time')->setDefault(0)->setComment('创建时间'))
|
|
->addColumn(Column::unsignedInteger('update_time')->setDefault(0)->setComment('修改时间'))
|
|
->addIndex('user_id')
|
|
->addIndex('bank_num')
|
|
->addIndex('bank_id')
|
|
->create();
|
|
}
|
|
}
|