Slightly modify DB migration template.

This commit is contained in:
Buster Neece 2024-04-21 04:47:32 -05:00
parent a34d86f5c0
commit c84522105d
No known key found for this signature in database
1 changed files with 3 additions and 4 deletions

View File

@ -5,7 +5,6 @@ declare(strict_types=1);
namespace <namespace>;
use Doctrine\DBAL\Schema\Schema;
use App\Entity\Migrations\AbstractMigration;
final class <className> extends AbstractMigration
{
@ -16,12 +15,12 @@ final class <className> extends AbstractMigration
public function up(Schema $schema): void
{
<up>
<up>
}
public function down(Schema $schema): void
{
<down>
<down>
}
<override>
<override>
}