addSql('CREATE TABLE shared_note (id BLOB NOT NULL --(DC2Type:uuid) , note_id BLOB NOT NULL --(DC2Type:uuid) , owner_id BLOB NOT NULL --(DC2Type:uuid) , shared_user_id BLOB NOT NULL --(DC2Type:uuid) , PRIMARY KEY(id), CONSTRAINT FK_754B918C26ED0855 FOREIGN KEY (note_id) REFERENCES note (id) NOT DEFERRABLE INITIALLY IMMEDIATE)'); $this->addSql('CREATE INDEX IDX_754B918C26ED0855 ON shared_note (note_id)'); $this->addSql('CREATE TABLE shared_series (id BLOB NOT NULL --(DC2Type:uuid) , series_id BLOB NOT NULL --(DC2Type:uuid) , owner_id BLOB NOT NULL --(DC2Type:uuid) , shared_user_id BLOB NOT NULL --(DC2Type:uuid) , PRIMARY KEY(id), CONSTRAINT FK_59E803195278319C FOREIGN KEY (series_id) REFERENCES series (id) NOT DEFERRABLE INITIALLY IMMEDIATE)'); $this->addSql('CREATE INDEX IDX_59E803195278319C ON shared_series (series_id)'); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('DROP TABLE shared_note'); $this->addSql('DROP TABLE shared_series'); } }