vkashti / supabase / migrations / 20250318104515_remote_schema.sql
20250318104515_remote_schema.sql
Raw
alter table "public"."profiles" add column "discord_id" text;

alter table "public"."tables" add column "height" integer;

alter table "public"."tables" add column "width" integer;

create policy "Allow everyone to view tables"
on "public"."tables"
as permissive
for select
to authenticated, anon
using (true);