migrations/Version20220704143358.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 Version20220704143358 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 printer_user_schedule_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
            $this->addSql('CREATE TABLE printer_user_schedule (id INT NOT NULL, printer_user_id INT DEFAULT NULL, time TIME(0) WITHOUT TIME ZONE DEFAULT NULL, days TEXT DEFAULT NULL, PRIMARY KEY(id))');
            $this->addSql('CREATE UNIQUE INDEX UNIQ_19CC51C083EF2994 ON printer_user_schedule (printer_user_id)');
            $this->addSql('COMMENT ON COLUMN printer_user_schedule.days IS \'(DC2Type:array)\'');
            $this->addSql('ALTER TABLE printer_user_schedule ADD CONSTRAINT FK_19CC51C083EF2994 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 printer_user_schedule_id_seq CASCADE');
            $this->addSql('DROP TABLE printer_user_schedule');
        }
    }