addSql('CREATE TABLE patient_calls (id INT AUTO_INCREMENT NOT NULL, uuid VARCHAR(36) NOT NULL, subject VARCHAR(255) NOT NULL, summary LONGTEXT DEFAULT NULL, outcome VARCHAR(10) NOT NULL, called_at INT NOT NULL, personnel VARCHAR(120) DEFAULT NULL, created_at INT NOT NULL, record_id INT NOT NULL, UNIQUE INDEX UNIQ_4F958740D17F50A6 (uuid), INDEX idx_patient_calls_record (record_id), PRIMARY KEY (id)) DEFAULT CHARACTER SET utf8mb4'); $this->addSql('ALTER TABLE patient_calls ADD CONSTRAINT FK_4F9587404DFD750C FOREIGN KEY (record_id) REFERENCES patient_records (id) ON DELETE CASCADE'); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('ALTER TABLE patient_calls DROP FOREIGN KEY FK_4F9587404DFD750C'); $this->addSql('DROP TABLE patient_calls'); } }