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