abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); $this->addSql('ALTER TABLE users ADD company_name VARCHAR(255) DEFAULT NULL, ADD job_function VARCHAR(255) DEFAULT NULL, ADD number_of_employee VARCHAR(255) DEFAULT NULL, ADD industry VARCHAR(255) DEFAULT NULL, ADD website_url VARCHAR(255) DEFAULT NULL, ADD hub_spot TINYINT(1) NOT NULL'); } /** * @param Schema $schema */ public function down(Schema $schema) { // this down() migration is auto-generated, please modify it to your needs $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); $this->addSql('ALTER TABLE users DROP company_name, DROP job_function, DROP number_of_employee, DROP industry, DROP website_url, DROP hub_spot'); } }