|
@@ -29,7 +29,7 @@ class Maintenancemapper extends Migrator
|
|
|
*/
|
|
|
public function change()
|
|
|
{
|
|
|
- $table = $this->table('maintenancemapper', ['engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '维保记录相关字典映射表' ,'id' => 'id','signed' => true ,'primary_key' => ['id']]);
|
|
|
+ $table = $this->table('maintenance_mapper', ['engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '维保记录相关字典映射表' ,'id' => 'id','signed' => true ,'primary_key' => ['id']]);
|
|
|
$table->addColumn('device_type', 'string', ['limit' => 6,'null' => false,'default' => '','signed' => true,'comment' => '设备类型',])
|
|
|
->addColumn('value', 'string', ['limit' => 255,'null' => false,'default' => '','signed' => true,'comment' => '唯一值',])
|
|
|
->addColumn('name', 'string', ['limit' => 255,'null' => false,'default' => '','signed' => true,'comment' => '名称',])
|