migrations/2023/02/Version20230217122132.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20230217122132 extends AbstractMigration{public function up(Schema $schema): void{$this->addSql('ALTER TABLE contact ADD industry_sector SMALLINT DEFAULT NULL COMMENT \'(DC2Type:industry_sector)\'');}public function down(Schema $schema): void{$this->addSql('ALTER TABLE contact DROP industry_sector');}}