addSql('ALTER TABLE users DROP CONSTRAINT FK_1483A5E93C219753'); $this->addSql('DROP INDEX IDX_1483A5E93C219753'); $this->addSql('ALTER TABLE users DROP currentLocation_id'); } public function getDescription(): string { return 'Add current location to User entity'; } public function up(Schema $schema): void { $this->addSql('ALTER TABLE users ADD currentLocation_id INT DEFAULT NULL'); $this->addSql('ALTER TABLE users ADD CONSTRAINT FK_1483A5E93C219753 FOREIGN KEY (currentLocation_id) REFERENCES chill_main_location (id) NOT DEFERRABLE INITIALLY IMMEDIATE'); $this->addSql('CREATE INDEX IDX_1483A5E93C219753 ON users (currentLocation_id)'); } }