addSql('ALTER TABLE chill_person_social_action DROP ordering'); $this->addSql('ALTER TABLE chill_person_social_issue DROP ordering'); } public function getDescription(): string { return 'Add ordering to social issue and social actions'; } public function up(Schema $schema): void { $this->addSql('ALTER TABLE chill_person_social_action ADD ordering DOUBLE PRECISION DEFAULT \'0\' NOT NULL'); $this->addSql('ALTER TABLE chill_person_social_issue ADD ordering DOUBLE PRECISION DEFAULT \'0\' NOT NULL'); } }