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);