From 809050c2a635cbb20737f7c4c6384d5a78b91431 Mon Sep 17 00:00:00 2001 From: "iVampireSP.com" Date: Mon, 20 Feb 2023 00:11:33 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4=20last=5Fpaid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2023_02_19_235923_remove_cycle_billing_to_hosts.php | 1 + 1 file changed, 1 insertion(+) 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'); }); }