You are giving Can't create table
error when creating this table in MySql. I have no idea where the problem is D:
CREATE TABLE IF NOT EXISTS 'tbnoticiasrel' (
'id' bigint(20) NOT NULL AUTO_INCREMENT,
'id_noticia' bigint(20) NOT NULL,
'id_noticia_relacionada' bigint(20) NOT NULL,
PRIMARY KEY ('id'),
FOREIGN KEY fk_id_noticia('id_noticia')
REFERENCES tbnews('id'),
FOREIGN KEY fk_id_noticia_relacionada('id_noticia_relacionada') ,
REFERENCES tbnews('id')
)