fix: add missing payment_method column to orders table

This commit is contained in:
DanielS
2026-07-09 23:33:13 +02:00
parent ae4a8429c7
commit 2c572c5bd4

View File

@@ -0,0 +1,6 @@
-- Migration: Add missing payment_method column to orders table
-- Purpose: Add payment_method column to public.orders and reload Schema Cache.
ALTER TABLE public.orders ADD COLUMN IF NOT EXISTS payment_method TEXT;
NOTIFY pgrst, 'reload schema';