id(); $table->bigInteger('user_id')->unsigned(); $table->text('timeline_photo'); $table->text('caption'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('timelines'); } }