<?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 Version20220801014651 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 applicant ADD phone VARCHAR(255) NOT NULL');
$this->addSql('ALTER TABLE applicant ADD status VARCHAR(255) DEFAULT NULL');
$this->addSql('ALTER TABLE refrence ALTER affiliation DROP NOT NULL');
$this->addSql('ALTER TABLE refrence ALTER phone DROP NOT NULL');
$this->addSql('ALTER TABLE refrence ALTER ref_letter DROP NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE SCHEMA public');
$this->addSql('ALTER TABLE applicant DROP phone');
$this->addSql('ALTER TABLE applicant DROP status');
$this->addSql('ALTER TABLE refrence ALTER affiliation SET NOT NULL');
$this->addSql('ALTER TABLE refrence ALTER phone SET NOT NULL');
$this->addSql('ALTER TABLE refrence ALTER ref_letter SET NOT NULL');
}
}