Migration: Cannot add foreign key constraint

I’m trying to create foreign keys in Laravel however when I migrate my table using artisan i am thrown the following error: [Illuminate\Database\QueryException] SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint (SQL : alter table `priorities` add constraint priorities_user_id_foreign foreign key (`user_id`) references `users` (`id`)) My migration code is as so: priorities migration file … Read more

How to place the ~/.composer/vendor/bin directory in your PATH?

I’m on Ubuntu 14.04 and I’ve been trying all possible methods to install Laravel to no avail. Error messages everything I try. I’m now trying the first method in the quickstart documentation, that is, via Laravel Installer, but it says to “Make sure to place the ~/.composer/vendor/bin directory in your PATH so the Laravel executable … Read more