addSql('ALTER TABLE revendeur ADD contrat_reseller_pdf_unsigned VARCHAR(500) DEFAULT NULL'); $this->addSql('ALTER TABLE revendeur ADD contrat_reseller_pdf_signed VARCHAR(500) DEFAULT NULL'); $this->addSql('ALTER TABLE revendeur ADD contrat_reseller_pdf_audit VARCHAR(500) DEFAULT NULL'); $this->addSql('ALTER TABLE revendeur ADD contrat_submitter_id INT DEFAULT NULL'); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('ALTER TABLE revendeur DROP contrat_reseller_pdf_unsigned'); $this->addSql('ALTER TABLE revendeur DROP contrat_reseller_pdf_signed'); $this->addSql('ALTER TABLE revendeur DROP contrat_reseller_pdf_audit'); $this->addSql('ALTER TABLE revendeur DROP contrat_submitter_id'); } }