|
@@ -29,7 +29,7 @@ class Worklocation extends Migrator
|
|
|
*/
|
|
|
public function change()
|
|
|
{
|
|
|
- $table = $this->table('worklocation', ['engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '工作位置' ,'id' => 'id','signed' => true ,'primary_key' => ['id']]);
|
|
|
+ $table = $this->table('work_location', ['engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '工作位置' ,'id' => 'id','signed' => true ,'primary_key' => ['id']]);
|
|
|
$table->addColumn('wind_id', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => true,'signed' => true,'comment' => '风场编号',])
|
|
|
->addColumn('fan_id', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => true,'signed' => true,'comment' => '风机编号',])
|
|
|
->addColumn('work_local', 'string', ['limit' => 250,'null' => true,'signed' => true,'comment' => '工作位置',])
|