count()) { throw new \Exception('Migration not possibue for current bills.'); } Schema::table('invoices', function (Blueprint $table) { $table->dropColumn('greeting'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('invoices', function (Blueprint $table) { $table->string('greeting'); }); } };