string('remote_url')->nullable()->index()->after('thumb_path'); $table->timestamp('last_fetched_at')->nullable()->after('change_count'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('avatars', function (Blueprint $table) { $table->dropColumn(['remote_url','last_fetched_at']); }); } }