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,58 @@
<?php
use think\migration\Migrator;
use think\migration\db\Column;
class User 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',['engine'=>'Innodb', 'comment' => '用户表','collation'=>'utf8mb4_general_ci' ,'signed' => false]);
$table->addColumn(Column::char('cellphone',11)->setComment('手机号码'))
->addColumn(Column::string('nickname',50)->setComment('用户昵称')->setNullable())
->addColumn(Column::string('password',255)->setComment('登录密码'))
->addNullableMorphs('member')
->addColumn(Column::tinyInteger('status')->setComment('用户状态1 正常 -9 禁用'))
->addColumn(Column::unsignedInteger('father_id')->setComment('爸爸级ID')->setDefault(0))
->addColumn(Column::unsignedInteger('grandfather_id')->setComment('爷爷级ID')->setDefault(0))
->addColumn(Column::unsignedInteger('refer_id')->setComment('上级推广ID')->setDefault(0))
->addColumn(Column::unsignedInteger('tree_id')->setComment('顶级推广ID')->setDefault(0))
->addColumn(Column::string('invite_code')->setComment('注册使用的邀请码')->setDefault(0))
->addColumn(Column::string('reg_ip',50)->setComment('注册IP'))
->addColumn(Column::string('last_login_ip',50)->setComment('最后登录IP'))
->addColumn(Column::unsignedInteger('last_login_time')->setComment('最后登录时间'))
->addColumn(Column::unsignedInteger('delete_time')->setComment('删除时间')->setDefault(0))
->addColumn(Column::unsignedInteger('create_time')->setComment('创建时间')->setDefault(0))
->addColumn(Column::unsignedInteger('update_time')->setComment('更新时间')->setDefault(0))
->addIndex('cellphone')
->addIndex('invite_code')
->addIndex('last_login_ip')
->addIndex('last_login_time')
->create();
}
public function up()
{
}
}