Added new Dashboard
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user