getEnvironment() == "thetool") { $Device = $this->table("Device"); $Device->addColumn('zabbix_online', 'integer', ['null' => false, 'default' => 0]); $Device->addColumn('zabbix_host_id', 'integer', ['null' => true]); $Device->update(); } } public function down(): void { if ($this->getEnvironment() == "thetool") { $Device = $this->table("Device"); $Device->removeColumn('zabbix_online'); $Device->removeColumn('zabbix_host_id'); $Device->update(); } } }