1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-24 17:01:44 +08:00
course-tencent-cloud/db/migrations/20210105023511_schema_202101051030.php
2021-01-07 15:10:42 +08:00

17 lines
308 B
PHP

<?php
class Schema202101051030 extends Phinx\Migration\AbstractMigration
{
public function change()
{
$this->table('kg_task')
->addIndex(['create_time'], [
'name' => 'create_time',
'unique' => false,
])
->save();
}
}