I have made a database and 10 tables in mysql(table type NONE) and i can\'t create foreign keys. An alert message says
SQLyog The selected table does not support for
The engine you're using doesn't support foreign keys (as the error message tells you obviously). You can change the engine you're using with
ALTER TABLE `tableName` ENGINE = newEngine;