migrations/Version20220708130835.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 Version20220708130835 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 claim_code_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
            $this->addSql('CREATE TABLE claim_code (id INT NOT NULL, printer_user_id INT NOT NULL, printer_code VARCHAR(255) NOT NULL, claim_code VARCHAR(255) NOT NULL, PRIMARY KEY(id))');
            $this->addSql('CREATE INDEX IDX_391AA7BC83EF2994 ON claim_code (printer_user_id)');
            $this->addSql('ALTER TABLE claim_code ADD CONSTRAINT FK_391AA7BC83EF2994 FOREIGN KEY (printer_user_id) REFERENCES "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 claim_code_id_seq CASCADE');
            $this->addSql('DROP TABLE claim_code');
        }
    }