mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 20:52:44 +08:00
38 lines
887 B
PHP
38 lines
887 B
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2023 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
use Phinx\Db\Adapter\MysqlAdapter;
|
|
use Phinx\Migration\AbstractMigration;
|
|
|
|
final class V20230522141831 extends AbstractMigration
|
|
{
|
|
|
|
public function up()
|
|
{
|
|
$this->alterReviewLikeTable();
|
|
}
|
|
|
|
protected function alterReviewLikeTable()
|
|
{
|
|
$table = $this->table('kg_review_like');
|
|
|
|
if (!$table->hasColumn('update_time')) {
|
|
$table->addColumn('update_time', 'integer', [
|
|
'null' => false,
|
|
'default' => '0',
|
|
'limit' => MysqlAdapter::INT_REGULAR,
|
|
'signed' => false,
|
|
'comment' => '更新时间',
|
|
'after' => 'create_time',
|
|
]);
|
|
}
|
|
|
|
$table->save();
|
|
}
|
|
|
|
}
|