44 lines
1.7 KiB
PHP
44 lines
1.7 KiB
PHP
<?php
|
||
|
||
use think\migration\Migrator;
|
||
use think\migration\db\Column;
|
||
|
||
class ApiBankAuth 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('api_bank_auth')->setCollation('utf8mb4_general_ci')->setComment('银行卡四要素认证结果');
|
||
$table
|
||
->addColumn(Column::unsignedInteger('record_id')->setComment('关联buyer_certification_record的ID'))
|
||
->addColumn(Column::string('api_request_id')->setComment('API请求记录ID'))
|
||
->addColumn(Column::string('order_no')->setComment('API订单ID')->setNullable())
|
||
->addColumn(Column::tinyInteger('result_id')->setComment('四要素核验结果0 认证一致,1 认证失败,2未认证,3 已注销'))
|
||
->addColumn(Column::string('remark',255)->setComment('返回结果说明'))
|
||
->addColumn(Column::unsignedInteger("create_time")->setComment('创建时间'))
|
||
->addColumn(Column::unsignedInteger("update_time")->setComment('更新时间'))
|
||
->addIndex(['record_id'])
|
||
->create();
|
||
}
|
||
}
|