<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20211011091956 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE vendors ADD login_code VARCHAR(255) DEFAULT NULL, ADD xml_code VARCHAR(255) DEFAULT NULL,
ADD id_special_code VARCHAR(255) DEFAULT NULL, ADD author_login VARCHAR(255) DEFAULT NULL, ADD author_password VARCHAR(255) DEFAULT NULL,
ADD last4_ssn_code VARCHAR(255) DEFAULT NULL, ADD dob_code VARCHAR(255) DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE vendors DROP login_code, DROP xml_code, DROP id_special_code, DROP author_login, DROP author_password, DROP last4_ssn_code, DROP dob_code');
}
}