addSql(<<<'SQL' ALTER TABLE answer ADD ordering SMALLINT DEFAULT 0 NOT NULL SQL); $this->addSql(<<<'SQL' ALTER TABLE question ADD ordering SMALLINT DEFAULT 0 NOT NULL SQL); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql(<<<'SQL' ALTER TABLE answer DROP ordering SQL); $this->addSql(<<<'SQL' ALTER TABLE question DROP ordering SQL); } }