increments('id'); $table->unsignedInteger('profile_id')->nullable(); $table->string('caption')->nullable(); $table->boolean('is_nsfw')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('statuses'); } }