Não consegui usar o comando: ALTER TABLE COMPRAS ADD FOREIGN KEY (COMPRADOR_ID) REFERENCES COMPRADORES(ID);
A saída de erro é: Cannot add foreign key constraint
Não consegui usar o comando: ALTER TABLE COMPRAS ADD FOREIGN KEY (COMPRADOR_ID) REFERENCES COMPRADORES(ID);
A saída de erro é: Cannot add foreign key constraint
Faltou você informar o nome da FK, ele deve ser informado após o FOREIGN KEY "NOMEFK", seu código correto ficaria assim:
ALTER TABLE COMPRAS ADD FOREIGN KEY FKNAME (COMPRADOR_ID) REFERENCES COMPRADORES(ID)