移除 last_paid

This commit is contained in:
iVampireSP.com 2023-02-20 00:11:33 +08:00
parent ac538adc3a
commit 809050c2a6
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -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');
});
}