123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?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');
- }
- }
|