123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- class CreateCommentsTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('comments', function (Blueprint $table) {
- $table->bigIncrements('id');
- $table->bigInteger('profile_id')->unsigned();
- $table->bigInteger('user_id')->unsigned()->nullable();
- $table->bigInteger('status_id')->unsigned();
- $table->text('comment')->nullable();
- $table->text('rendered')->nullable();
- $table->json('entities')->nullable();
- $table->boolean('is_remote')->default(false);
- $table->timestamp('rendered_at')->nullable();
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('comments');
- }
- }
|