Created
December 11, 2018 12:15
-
-
Save devmsh/e61abecf7b225dab0afa271bd0968649 to your computer and use it in GitHub Desktop.
CreateEventsTable
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
| <?php | |
| class CreateEventsTable extends Migration | |
| { | |
| public function up() | |
| { | |
| Schema::create('events', function (Blueprint $table) { | |
| // table columns | |
| $table->unsignedInteger('user_id'); | |
| $table->foreign('user_id')->references('id') | |
| ->on('users')->onDelete('CASCADE'); | |
| }); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment