Merge branch 'ADBWohneinheit/add-unscheduled-rollout-check' into 'master'

added rml unscheduled check

See merge request fronk/thetool!1455
This commit is contained in:
Luca Haid
2025-06-12 10:56:55 +00:00

View File

@@ -7,7 +7,7 @@ final class ConstrConsOwnerAddCompany extends AbstractMigration
{
public function up(): void
{
if($this->getEnvironment() == "addressdb") {
if($this->getEnvironment() == "thetool") {
$ConstructionConsentOwner = $this->table("ConstructionConsentOwner");
$ConstructionConsentOwner->addColumn("company", "string", ["limit" => 255, "null" => true]);
@@ -17,7 +17,7 @@ final class ConstrConsOwnerAddCompany extends AbstractMigration
public function down(): void
{
if($this->getEnvironment() == "addressdb") {
if($this->getEnvironment() == "thetool") {
$ConstructionConsentOwner = $this->table("ConstructionConsentOwner");
$ConstructionConsentOwner->removeColumn("company");