When using the mySQL database, I can't seem to get my foreign keys to stay when I define them through phpMyAdmin. As an example, I use the following table definition:
CREATE TABLE `user_source` (
`user_name` varchar(15) NOT NULL,
`url` varchar(50) NOT NULL,
PRIMARY KEY...