Skip to content

Instantly share code, notes, and snippets.

@Sarav-S
Last active November 13, 2019 10:58
Show Gist options
  • Save Sarav-S/6a77e1b9e06a0d90292d98e5aa5e8c96 to your computer and use it in GitHub Desktop.
Save Sarav-S/6a77e1b9e06a0d90292d98e5aa5e8c96 to your computer and use it in GitHub Desktop.
Foreign Key Reference
<?php
$table->foreign('user_id')
->references('id')->on('users')
->onUpdate('cascade')
->onDelete('cascade');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment