migrations/2020/07/Version20200711214657.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20200711214657 extends AbstractMigration{public function up(Schema $schema): void{$this->addSql('ALTER TABLE invoice DROP customer_bank_iban, DROP customer_bank_bic');}public function down(Schema $schema): void{$this->addSql('ALTER TABLE invoice ADD customer_bank_iban VARCHAR(34) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, ADD customer_bank_bic VARCHAR(11) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`');}}