Files
orico-official-website/database/migrations/20250519083010_create_oauth_client.php

43 lines
1.8 KiB
PHP

<?php
use think\migration\Migrator;
use think\migration\db\Column;
class CreateOauthClient 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('oauth_client', ['engine' => 'MyISAM', 'collation' => 'utf8mb4_general_ci', 'comment' => 'OAuth2 客户端表']);
$table->addColumn('agent_id', 'integer', ['limit' => 10, 'null' => true, 'comment' => '代理ID'])
->addColumn('client_id', 'string', ['limit' => 32, 'comment' => '客户端id'])
->addColumn('client_secret', 'string', ['limit' => 128, 'comment' => '客户端密钥'])
->addColumn('redirect_uri', 'string', ['limit' => 255, 'comment' => '回调地址'])
->addColumn('enabled', 'boolean', ['default' => 1, 'comment' => '是否启用'])
->addColumn('created_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间'])
->addColumn('updated_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP', 'comment' => '更新时间'])
->addColumn('deleted_at', 'timestamp', ['null' => true, 'default' => null, 'comment' => '删除时间'])
->create();
}
}