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

39 lines
959 B

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateContentReportsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('content_reports', function (Blueprint $table) {
$table->increments('id');
$table->timestamps();
$table->morphs('object');
$table->unsignedInteger('author_id')->index();
$table->text('message');
$table->foreign('author_id')->references('id')->on('users')
->onDelete('cascade');
// we can't add a foreign key constraint on the morph column, need to check manually
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('content_reports');
}
}