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_185840_create_ta...

38 lines
883 B

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