diff --git a/database/migrations/2023_02_19_235923_remove_cycle_billing_to_hosts.php b/database/migrations/2023_02_19_235923_remove_cycle_billing_to_hosts.php index d8cadda..d70d27c 100644 --- a/database/migrations/2023_02_19_235923_remove_cycle_billing_to_hosts.php +++ b/database/migrations/2023_02_19_235923_remove_cycle_billing_to_hosts.php @@ -16,6 +16,7 @@ public function up(): void Schema::table('hosts', function (Blueprint $table) { $table->dropColumn('next_due_at'); $table->dropColumn('billing_cycle'); + $table->dropColumn('last_paid'); }); }