Added new Dashboard

This commit is contained in:
Luca Haid
2025-01-09 16:37:36 +01:00
parent 125316234d
commit 6aa797a006
6 changed files with 620 additions and 5 deletions
@@ -0,0 +1,19 @@
<?php /** @noinspection ALL */
declare(strict_types=1);
use Phinx\Migration\AbstractMigration;
final class AddVoiceCallHistoryStartIndex extends AbstractMigration {
public function up(): void {
if ($this->getEnvironment() == "thetool") {
//VoiceCallHistory Table add start index
$this->table("PreorderStatusflagValue")->addIndex(["flag_id"])->save();
}
}
public function down(): void {
if ($this->getEnvironment() == "thetool") {
$this->table("PreorderStatusflagValue")->removeIndex(["flag_id"])->save();
}
}
}