46 lines
1.8 KiB
PHP
46 lines
1.8 KiB
PHP
<?php
|
||
|
||
use think\migration\Migrator;
|
||
use think\migration\db\Column;
|
||
|
||
class Uploads 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('uploads')->setCollation('utf8mb4_general_ci')->setComment('图片上传记录表');
|
||
$table
|
||
->addColumn(Column::string('file_type',30)->setComment('图片类型'))
|
||
->addColumn(Column::tinyInteger('is_auth')->setComment('是否需要鉴权查看')->setDefault(0))
|
||
->addColumn(Column::tinyInteger('water_type')->setComment('水印类型0=无,1=常规水印2=混淆水印')->setDefault(0))
|
||
->addColumn(Column::integer('user_id')->setComment('关联用户ID,0=无关联')->setDefault(0))
|
||
->addColumn(Column::unsignedInteger('hash_id')->setComment('hash表ID'))
|
||
->addColumn(Column::unsignedInteger("delete_time")->setComment('删除时间')->setDefault(0))
|
||
->addColumn(Column::unsignedInteger("create_time")->setComment('创建时间'))
|
||
->addColumn(Column::unsignedInteger("update_time")->setComment('更新时间'))
|
||
->addIndex(['user_id'])
|
||
->addIndex(['hash_id'])
|
||
->create();
|
||
}
|
||
}
|