Skip to content

Commit

Permalink
Add widget with PABO information to subscription detail (attempt 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
rootpd committed Nov 14, 2023
1 parent 65453a5 commit 9dc3e7d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/migrations/20231006111345_address_meta_key_index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);

use Phinx\Migration\AbstractMigration;

final class AddressMetaKeyIndex extends AbstractMigration
{
public function up(): void
{
$this->table('addresses_meta')
->addIndex('key')
->update();
}

public function down(): void
{
$this->table('addresses_meta')
->removeIndex('key')
->update();
}
}

0 comments on commit 9dc3e7d

Please sign in to comment.