add three column in user_gateways and use them in controller #30

Merged
amirghasempoor merged 4 commits from feature/GetClient into develop 2026-06-01 13:06:13 +00:00
Showing only changes of commit a1466d8f57 - Show all commits

View File

@@ -24,7 +24,7 @@ return new class extends Migration
public function down(): void
{
Schema::table('user_gateways', function (Blueprint $table) {
$table->dropColumn('client_id', 'client_secret','status');
$table->dropColumn(['client_id', 'client_secret','status']);
});
}
};