Skip to content

Instantly share code, notes, and snippets.

@devmsh
Created December 11, 2018 12:15
Show Gist options
  • Select an option

  • Save devmsh/e61abecf7b225dab0afa271bd0968649 to your computer and use it in GitHub Desktop.

Select an option

Save devmsh/e61abecf7b225dab0afa271bd0968649 to your computer and use it in GitHub Desktop.
CreateEventsTable
<?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