You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GameGab/database/migrations/2019_03_30_224150_create_th...

41 lines
907 B
PHTML

6 years ago
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateThreadsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('threads', function (Blueprint $table) {
//Columns
6 years ago
$table->bigIncrements('id');
$table->string('thread_title');
$table->unsignedBigInteger('thread_creator_id')->nullable();
6 years ago
$table->timestamps();
//Key constraints
$table->foreign('thread_creator_id')->
references('id')->
on('users')->
onDelete('set null');
6 years ago
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('threads');
}
}