1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-22 07:56:39 +08:00
course-tencent-cloud/db/migrations/20201227081614_schema_202012271615.php
2021-01-03 13:26:55 +08:00

23 lines
514 B
PHP

<?php
use Phinx\Db\Adapter\MysqlAdapter;
class Schema202012271615 extends Phinx\Migration\AbstractMigration
{
public function change()
{
$this->table('kg_course')
->addColumn('featured', 'integer', [
'null' => false,
'default' => '0',
'limit' => MysqlAdapter::INT_REGULAR,
'signed' => false,
'comment' => '推荐标识',
'after' => 'attrs',
])
->save();
}
}