likang 2 years ago
parent
commit
87ee7b0f36

+ 1 - 1
catch/worklocation/database/migrations/20220519133643_worklocation.php

@@ -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' => '工作位置',])

+ 2 - 2
catch/worklocation/database/migrations/20220520034314_work_local_add_field.php

@@ -37,8 +37,8 @@ class WorkLocalAddField extends Migrator
      */
     public function change()
     {
-        if ($this->hasTable('worklocation')) {
-            $table = $this->table('worklocation');
+        if ($this->hasTable('work_location')) {
+            $table = $this->table('work_location');
 
             $table ->addColumn('torque', 'string', ['limit' => 32,'null' => true,'signed' => true,'comment' => '扭矩',])
                     ->addColumn('pressure', 'string', ['limit' => 32,'null' => true,'signed' => true,'comment' => '压力',])

+ 2 - 2
catch/worklocation/database/migrations/20220520054827_work_local_add_field.php

@@ -37,8 +37,8 @@ class WorkLocalAddField extends Migrator
      */
     public function change()
     {
-        if ($this->hasTable('worklocation')) {
-            $table = $this->table('worklocation');
+        if ($this->hasTable('work_location')) {
+            $table = $this->table('work_location');
 
             $table ->addColumn('torque', 'string', ['limit' => 32,'null' => true,'signed' => true,'comment' => '扭矩',])
                     ->addColumn('pressure', 'string', ['limit' => 32,'null' => true,'signed' => true,'comment' => '压力',])