From 705da4f610261839b3ff3ef493f2f4d70a257be5 Mon Sep 17 00:00:00 2001 From: turingcat Date: Wed, 15 Jul 2026 16:59:00 +0800 Subject: [PATCH] =?UTF-8?q?feat(payment):=20=E8=A1=A5=E5=85=85=E8=AE=A2?= =?UTF-8?q?=E9=98=85=E5=A5=97=E9=A4=90=E5=B8=81=E7=A7=8D=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E7=9A=84=20SQL=20=E8=BF=81=E7=A7=BB=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- backend/migrations/177_add_subscription_plan_currency.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 backend/migrations/177_add_subscription_plan_currency.sql diff --git a/backend/migrations/177_add_subscription_plan_currency.sql b/backend/migrations/177_add_subscription_plan_currency.sql new file mode 100644 index 0000000000..9ed13ddc10 --- /dev/null +++ b/backend/migrations/177_add_subscription_plan_currency.sql @@ -0,0 +1,4 @@ +-- Display-only ISO 4217 currency label for subscription plan prices; empty +-- keeps existing plans rendering without any label. +ALTER TABLE subscription_plans + ADD COLUMN IF NOT EXISTS currency VARCHAR(3) NOT NULL DEFAULT '';