diff --git a/Layout/default/Preordercampaign/Admin.php b/Layout/default/Preordercampaign/Admin.php index 009c88ce2..936bbf220 100644 --- a/Layout/default/Preordercampaign/Admin.php +++ b/Layout/default/Preordercampaign/Admin.php @@ -108,7 +108,7 @@
diff --git a/db/migrations/20230928105441_alter_rimoworkorder_createdata_mediumtext.php b/db/migrations/20230928105441_alter_rimoworkorder_createdata_mediumtext.php new file mode 100644 index 000000000..e981e71f2 --- /dev/null +++ b/db/migrations/20230928105441_alter_rimoworkorder_createdata_mediumtext.php @@ -0,0 +1,31 @@ +getEnvironment() == "thetool") { + $table = $this->table("RimoWorkorder"); + $table->changeColumn("create_data", "text", ['limit' => Phinx\Db\Adapter\MysqlAdapter::TEXT_MEDIUM]); + $table->update(); + } + + if($this->getEnvironment() == "addressdb") { + + } + } + + public function down(): void + { + if($this->getEnvironment() == "thetool") { + + } + + if($this->getEnvironment() == "addressdb") { + + } + } +}