migrations/Version20220914103451.php line 1

Open in your IDE?
  1. <?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 Version20220914103451 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('CREATE SEQUENCE intergration_weather_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
            $this->addSql('CREATE TABLE intergration_weather (id INT NOT NULL, printer_user_id INT DEFAULT NULL, postcode VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id))');
            $this->addSql('CREATE UNIQUE INDEX UNIQ_DEA8A03583EF2994 ON intergration_weather (printer_user_id)');
            $this->addSql('ALTER TABLE intergration_weather ADD CONSTRAINT FK_DEA8A03583EF2994 FOREIGN KEY (printer_user_id) REFERENCES printer_user (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
        }
    
        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('DROP SEQUENCE intergration_weather_id_seq CASCADE');
            $this->addSql('ALTER TABLE intergration_weather DROP CONSTRAINT FK_DEA8A03583EF2994');
            $this->addSql('DROP TABLE intergration_weather');
        }
    }