mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-07-22 07:56:39 +08:00
23 lines
514 B
PHP
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();
|
|
}
|
|
|
|
}
|