mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 12:23:06 +08:00
38 lines
843 B
PHP
38 lines
843 B
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
use Phinx\Migration\AbstractMigration;
|
|
|
|
final class V20210802021814 extends AbstractMigration
|
|
{
|
|
|
|
public function up()
|
|
{
|
|
$this->alterPageTable();
|
|
}
|
|
|
|
protected function alterPageTable()
|
|
{
|
|
$table = $this->table('kg_page');
|
|
|
|
if (!$table->hasColumn('alias')) {
|
|
$table->addColumn('alias', 'string', [
|
|
'null' => false,
|
|
'default' => '',
|
|
'limit' => 50,
|
|
'collation' => 'utf8mb4_general_ci',
|
|
'encoding' => 'utf8mb4',
|
|
'comment' => '别名',
|
|
'after' => 'title',
|
|
]);
|
|
}
|
|
|
|
$table->save();
|
|
}
|
|
|
|
}
|