Skip to content

Instantly share code, notes, and snippets.

@andri-sudarmawijaya
Created December 9, 2017 07:11
Show Gist options
  • Save andri-sudarmawijaya/634afd5814adc5bc4077b73d2e3bc204 to your computer and use it in GitHub Desktop.
Save andri-sudarmawijaya/634afd5814adc5bc4077b73d2e3bc204 to your computer and use it in GitHub Desktop.
Drop foreign key when php artisan down
public function down()
{
Schema::table('todolists', function(Blueprint $table)
{
$table->dropForeign('todolists_category_id_foreign');
$table->dropColumn('category_id');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment