first commit

This commit is contained in:
编码猿
2024-09-27 01:32:49 +08:00
commit 28ebe05a64
7399 changed files with 1174529 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<?php
use think\migration\Migrator;
use think\migration\db\Column;
class UserWechat 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_wechat')->setCollation('utf8mb4_general_ci')->setComment('买家微信');
$table
->addColumn(Column::unsignedInteger('user_id')->setComment('关联用户ID'))
->addColumn(Column::string('detail')->setComment('微信号码'))
->addColumn(Column::integer('app_wechat_id')->setComment('关联平台微信ID'))
->addColumn(Column::tinyInteger('status')->setDefault(0)->setComment('认证状态0=认证中1=通过-1=未通过'))
->addColumn(Column::string('remark')->setNullable()->setComment('未通过的理由'))
->addColumn(Column::unsignedInteger('admin_id')->setNullable())
->addColumn(Column::unsignedInteger("admin_time")->setComment('审核时间')->setDefault(0))
->addColumn(Column::unsignedInteger("create_time")->setComment('创建时间'))
->addColumn(Column::unsignedInteger("update_time")->setComment('更新时间'))
->addIndex(['user_id'])
->addIndex(['detail'])
->addIndex(['app_wechat_id'])
->create();
}
}