mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-07-24 17:01:44 +08:00
17 lines
308 B
PHP
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();
|
|
}
|
|
|
|
}
|