added rml unscheduled check
This commit is contained in:
@@ -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");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user