|
@@ -39,9 +39,9 @@ final class ProfitShareReceiver extends AbstractMigration
|
|
|
->addColumn('receiver_no', 'string', ['null' => true, 'limit' => 32, 'comment' => '接收方编号'])
|
|
->addColumn('receiver_no', 'string', ['null' => true, 'limit' => 32, 'comment' => '接收方编号'])
|
|
|
->addColumn('status', 'integer', ['signed' => false, 'default' => 1, 'comment' => '状态 1: 待审核 2:提交中 3: 验证通过 4: 验证失败 5:绑定中 6: 绑定成功 7: 绑定失败'])
|
|
->addColumn('status', 'integer', ['signed' => false, 'default' => 1, 'comment' => '状态 1: 待审核 2:提交中 3: 验证通过 4: 验证失败 5:绑定中 6: 绑定成功 7: 绑定失败'])
|
|
|
->addColumn('fail_reason', 'string', ['null' => true, 'limit' => 255, 'comment' => '失败原因'])
|
|
->addColumn('fail_reason', 'string', ['null' => true, 'limit' => 255, 'comment' => '失败原因'])
|
|
|
- ->addColumn('entrust_file_name', 'string', ['null' => true, 'limit' => 32, 'comment' => '合作协议附件名称'])
|
|
|
|
|
- ->addColumn('entrust_file_path', 'string', ['null' => true, 'limit' => 32, 'comment' => '合作协议附件路径'])
|
|
|
|
|
- ->addColumn('entrust_local_path', 'string', ['null' => true, 'limit' => 32, 'comment' => '合作协议附件本地路径'])
|
|
|
|
|
|
|
+ ->addColumn('entrust_file_name', 'string', ['null' => true, 'limit' => 100, 'comment' => '合作协议附件名称'])
|
|
|
|
|
+ ->addColumn('entrust_file_path', 'string', ['null' => true, 'limit' => 255, 'comment' => '合作协议附件路径'])
|
|
|
|
|
+ ->addColumn('entrust_local_path', 'string', ['null' => true, 'limit' => 255, 'comment' => '合作协议附件本地路径'])
|
|
|
->addColumn('wallet_id', 'string', ['null' => true, 'limit' => 32, 'comment' => '钱包ID'])
|
|
->addColumn('wallet_id', 'string', ['null' => true, 'limit' => 32, 'comment' => '钱包ID'])
|
|
|
->addTimestamps('create_time', 'update_time')
|
|
->addTimestamps('create_time', 'update_time')
|
|
|
->addColumn('delete_time', 'timestamp', ['null' => true, 'comment' => '删除时间'])
|
|
->addColumn('delete_time', 'timestamp', ['null' => true, 'comment' => '删除时间'])
|