pixelfed/database/migrations/2018_05_04_054007_create_re...

46 lines
1.4 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateReportsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('reports', function (Blueprint $table) {
$table->bigIncrements('id');
$table->bigInteger('profile_id')->unsigned();
$table->bigInteger('user_id')->unsigned()->nullable();
$table->bigInteger('object_id')->unsigned();
$table->string('object_type')->nullable();
$table->bigInteger('reported_profile_id')->unsigned()->nullable();
$table->string('type')->nullable();
$table->string('message')->nullable();
$table->timestamp('admin_seen')->nullable();
$table->boolean('not_interested')->default(false);
$table->boolean('spam')->default(false);
$table->boolean('nsfw')->default(false);
$table->boolean('abusive')->default(false);
$table->json('meta')->nullable();
$table->unique(['user_id', 'object_type', 'object_id']);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('reports');
}
}