Skip to content
This repository has been archived by the owner on Jan 23, 2025. It is now read-only.

typo schema.sql #364

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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;
create publication supabase_realtime for table products, prices;