19 lines
510 B
PHP
19 lines
510 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Migrations;
|
|
|
|
use MailPoet\Migrator\Migration;
|
|
|
|
class MigrationTemplate extends Migration {
|
|
public function run(): void {
|
|
/*
|
|
* TODO: Implement the migration logic here and remove this comment.
|
|
*
|
|
* You can use:
|
|
* $this->connection For SQL queries using Doctrine DBAL.
|
|
* $this->entityManager For operations using Doctrine Entity Manager.
|
|
* $this->container For accessing any needed service.
|
|
*/
|
|
}
|
|
}
|