datatable.directory codebase https://datatable.directory/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
datatable.directory/database/migrations/2018_07_12_190059_create_di...

37 lines
889 B

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateDiscussionFollowsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('discussion_follows', function (Blueprint $table) {
$table->unsignedInteger('user_id')->index();
$table->unsignedInteger('table_id')->index();
$table->foreign('user_id')->references('id')->on('users')
->onDelete('cascade');
$table->foreign('table_id')->references('id')->on('tables')
->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('discussion_follows');
}
}