addSql('ALTER TABLE chill_calendar.invite DROP remoteAttributes'); $this->addSql('ALTER TABLE chill_calendar.invite DROP remoteId'); } public function getDescription(): string { return 'Add remoteId for invitation'; } public function up(Schema $schema): void { $this->addSql('ALTER TABLE chill_calendar.invite ADD remoteAttributes JSON DEFAULT \'[]\' NOT NULL'); $this->addSql('ALTER TABLE chill_calendar.invite ADD remoteId TEXT DEFAULT \'\' NOT NULL'); $this->addSql('CREATE INDEX idx_calendar_invite_remote ON chill_calendar.invite (remoteId)'); } }