From 104f64b11792be8279f7bc2eaaa665ca012ddbe8 Mon Sep 17 00:00:00 2001 From: Gautam Manchandani Date: Sat, 8 Nov 2025 20:08:36 +0530 Subject: [PATCH] docs: fix incorrect unique constraint on subscription.referenceId (#5822) Signed-off-by: GautamBytes --- docs/content/docs/plugins/stripe.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/docs/plugins/stripe.mdx b/docs/content/docs/plugins/stripe.mdx index 6fc9f1a4ad..46384bebf0 100644 --- a/docs/content/docs/plugins/stripe.mdx +++ b/docs/content/docs/plugins/stripe.mdx @@ -622,8 +622,8 @@ Table Name: `subscription` { name: "referenceId", type: "string", - description: "The ID this subscription is associated with (user ID by default)", - isUnique: true + description: "The ID this subscription is associated with (user ID by default). This should NOT be a unique field in your database, as it must allow users to resubscribe after a cancellation.", + isUnique: false }, { name: "stripeCustomerId",