Created
October 1, 2014 21:23
-
-
Save weotch/d96faf2e0d4b0eb6ad5e to your computer and use it in GitHub Desktop.
Laravel foreign key example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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