Fix auto-withdraw deploy and accept POST on wallet settings route.
Deploy Ladill Mini / deploy (push) Successful in 37s

Drop the fragile column ordering in the migration and allow POST as well as PUT so the mobile clients can save auto-withdraw after deploy.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-12 08:02:42 +00:00
co-authored by Cursor
parent 2c4eaf1241
commit b952020890
2 changed files with 2 additions and 2 deletions
@@ -9,7 +9,7 @@ return new class extends Migration
public function up(): void
{
Schema::table('qr_settings', function (Blueprint $table) {
$table->unsignedBigInteger('auto_withdraw_amount_minor')->nullable()->after('notify_payouts');
$table->unsignedBigInteger('auto_withdraw_amount_minor')->nullable();
});
}