string('author_username', 255); $table->string('author_photo', 255); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('tweets', function (Blueprint $table) { $table->dropColumn('author_username'); $table->dropColumn('author_photo'); }); } }