diff --git a/schema.sql b/schema.sql index 15307ff2b..074dc7310 100644 --- a/schema.sql +++ b/schema.sql @@ -74,7 +74,7 @@ create type pricing_plan_interval as enum ('day', 'week', 'month', 'year'); create table prices ( -- Price ID from Stripe, e.g. price_1234. id text primary key, - -- The ID of the prduct that this price belongs to. + -- The ID of the product that this price belongs to. product_id text references products, -- Whether the price can be used for new purchases. active boolean, @@ -142,4 +142,4 @@ create policy "Can only view own subs data." on subscriptions for select using ( * Only allow realtime listening on public tables. */ drop publication if exists supabase_realtime; -create publication supabase_realtime for table products, prices; \ No newline at end of file +create publication supabase_realtime for table products, prices;