Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
Toflar committed Dec 3, 2024
1 parent f5f1c79 commit 6edef05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Migration/MailerTransportMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function shouldRun(): bool

public function run(): MigrationResult
{
$this->connection->executeStatement("ALTER TABLE tl_nc_gateway CHANGE mailerTransport mailerTransport varchar(64) DEFAULT NULL");
$this->connection->executeStatement('ALTER TABLE tl_nc_gateway CHANGE mailerTransport mailerTransport varchar(64) DEFAULT NULL');
$this->connection->executeStatement("UPDATE tl_nc_gateway SET mailerTransport = NULL WHERE mailerTransport = ''");

return $this->createResult(true);
Expand Down

0 comments on commit 6edef05

Please sign in to comment.