migrations fix basemigration not abstract migration
Some checks failed
CI / testsuite (pgsql, 8.2, ) (push) Successful in 5m36s
CI / testsuite (mysql, 8.2, ) (push) Successful in 5m53s
CI / testsuite (mysql, 8.4, ) (push) Successful in 8m59s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 5m34s
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Failing after 4m14s
CI / testsuite (pgsql, 8.4, ) (push) Successful in 9m1s
CI / Coding Standard & Static Analysis (push) Successful in 4m23s
CI / testsuite (sqlite, 8.4, ) (push) Successful in 8m36s

This commit is contained in:
2026-03-20 23:28:31 -07:00
parent e89ae66140
commit d06f9481f6
4 changed files with 19 additions and 6 deletions

View File

@@ -1,9 +1,9 @@
<?php
declare(strict_types=1);
use Migrations\AbstractMigration;
use Migrations\BaseMigration;
class InitialAddresses extends AbstractMigration {
class InitialAddresses extends BaseMigration {
/**
* Up Method.