Skip to content

Instantly share code, notes, and snippets.

@weotch
Created October 1, 2014 21:23
Show Gist options
  • Save weotch/d96faf2e0d4b0eb6ad5e to your computer and use it in GitHub Desktop.
Save weotch/d96faf2e0d4b0eb6ad5e to your computer and use it in GitHub Desktop.
Laravel foreign key example
$table->foreign('article_id')->references('id')->on('articles')->onUpdate('cascade')->onDelete('cascade');
// Set null style
$table->foreign('article_id')->references('id')->on('articles')->onUpdate('cascade')->onDelete('set null');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment