Velina Iankova
Velina Iankova

Reputation: 11

The window of relations in phpMyAdmin is blank

I'm trying to make relations between tables just like here, but the window that must show for choosing type of update and delete in child table, shows like pop - up and it's blank. I tried to use another browser, but it didn't help. What should I do?

Upvotes: 0

Views: 470

Answers (2)

Velina Iankova
Velina Iankova

Reputation: 11

The problem were the foreign keys. I haven't set them correctly.

Upvotes: 0

ciruvan
ciruvan

Reputation: 5213

The default storage engine MySQL uses is MyISAM, which unfortunately doesn't support relations. Check if your database objects are using that, and if yes, switch to InnoDB.

As a bonus, InnoDB will also give you transactions.

Upvotes: 2

Related Questions