Files
dafuweng/db/migrations/20231024093335_create_player_edit_log.php
2026-03-02 13:44:38 +08:00

41 lines
2.0 KiB
PHP

<?php
declare(strict_types=1);
use Phinx\Db\Adapter\MysqlAdapter;
use Phinx\Migration\AbstractMigration;
final class CreatePlayerEditLog extends AbstractMigration
{
/**
* Change Method.
*
* Write your reversible migrations using this method.
*
* More information on writing migrations is available here:
* https://book.cakephp.org/phinx/0/en/migrations.html#the-change-method
*
* Remember to call "create()" or "update()" and NOT "save()" when working
* with the Table class.
*/
public function change(): void
{
$exists = $this->hasTable('player_edit_log');
if (!$exists) {
$table = $this->table('player_edit_log', ['comment' => '玩家信息修改记录']);
$table->addColumn('player_id', 'integer', ['limit' => MysqlAdapter::INT_REGULAR, 'null' => false, 'default' => 0, 'comment' => '玩家id'])
->addColumn('department_id', 'integer', ['limit' => MysqlAdapter::INT_REGULAR, 'null' => false, 'default' => 0, 'comment' => '渠道/部门id'])
->addColumn('origin_data', 'text', ['limit' => MysqlAdapter::TEXT_REGULAR, 'comment' => '原数据'])
->addColumn('new_data', 'text', ['limit' => MysqlAdapter::TEXT_REGULAR, 'comment' => '新数据'])
->addColumn('user_id', 'integer', ['limit' => MysqlAdapter::INT_REGULAR, 'signed' => false, 'null' => false, 'default' => 0, 'comment' => '管理员id'])
->addColumn('user_name', 'string', ['limit' => 50, 'null' => false, 'default' => '', 'comment' => '管理员姓名'])
->addColumn('created_at', 'timestamp', ['comment' => '创建时间'])
->addColumn('updated_at', 'timestamp', ['comment' => '更新时间'])
->addIndex(['player_id'], ['name' => 'idx_player_id'])
->addIndex(['department_id'], ['name' => 'idx_department_id'])
->addIndex(['user_id'], ['name' => 'idx_user_id'])
->create();
}
}
}