Advanced Search
Search Results
4 total results found
Migrations
Laravel database migrations
Troubleshooting
Troubleshooting Laravel issues.
Foreign Keys
Migrations
There are two ways to reference foreign keys. This example uses a Parent-Child relationship and shows what to put in the child migration. Long way with the option to use different keys: $table->integer('child_id')->unsigned()->index(); $table->foreign('parent_...
Post auto-dump event returned with error code 255
Troubleshooting
This occurs when running either composer install or composer update. To troubleshoot check out your PHP error log to get more information about the error.