|
@@ -0,0 +1,45 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+use Illuminate\Support\Facades\Schema;
|
|
|
+use Illuminate\Database\Schema\Blueprint;
|
|
|
+use Illuminate\Database\Migrations\Migration;
|
|
|
+
|
|
|
+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');
|
|
|
+ }
|
|
|
+}
|