Im trying to set up a foreign key within one of my tables although I don't get the option to select foreign key constraints as shown in the below screenshot. Any idea on how I can go about setting foreign keys?

Im trying to set up a foreign key within one of my tables although I don't get the option to select foreign key constraints as shown in the below screenshot. Any idea on how I can go about setting foreign keys?

make sure you have both column type the same. without that, it will not show on your dropdown / unable to save
simply go to sql and go with the following query
ALTER TABLE `table_name_with_foreignKey`
ADD CONSTRAINT `foreignKey_constraint_name`
FOREIGN KEY (`Column_name_of_foreignkey`)
REFERENCES `table_having_referenceTokey`(`column_name_of_primaryKey`)
ON DELETE CASCADE
ON UPDATE CASCADE;