string('state')->nullable()->index()->after('name'); $table->tinyInteger('score')->default(0)->index()->after('long'); $table->unsignedBigInteger('cached_post_count')->nullable(); $table->timestamp('last_checked_at')->nullable()->index(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('places', function (Blueprint $table) { $table->dropColumn('state'); $table->dropColumn('score'); $table->dropColumn('cached_post_count'); $table->dropColumn('last_checked_at'); }); } };