updated rimotype map
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Phinx\Migration\AbstractMigration;
|
||||
|
||||
final class AdbAddFcpIndex extends AbstractMigration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
if ($this->getEnvironment() == 'addressdb')
|
||||
{
|
||||
$this->execute("ALTER TABLE `RimoFcp` ADD INDEX `idx_name` (`name`);");
|
||||
}
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
if ($this->getEnvironment() == 'addressdb') {
|
||||
$this->execute("ALTER TABLE `RimoFcp` DROP INDEX `idx_name`;");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user