[go: nahoru, domu]

Skip to content

Commit

Permalink
updated migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatXliner committed Feb 29, 2024
1 parent 7b683af commit 51a4acf
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions tooling/supabase/migrations/20240229192856_sync.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
alter table "public"."assignments" alter column "event_log" set default '{"auto": {"log": [], "checkboxes": {}}, "teleop": {"log": [], "checkboxes": {}}, "endgame": {"log": [], "checkboxes": {}}}'::jsonb;

alter table "public"."assignments" disable row level security;

alter table "public"."events" disable row level security;

alter table "public"."matches" disable row level security;

alter table "public"."profiles" disable row level security;

grant delete on table "public"."assignments" to "anon";

grant insert on table "public"."assignments" to "anon";

grant references on table "public"."assignments" to "anon";

grant select on table "public"."assignments" to "anon";

grant trigger on table "public"."assignments" to "anon";

grant truncate on table "public"."assignments" to "anon";

grant update on table "public"."assignments" to "anon";

grant delete on table "public"."events" to "anon";

grant insert on table "public"."events" to "anon";

grant references on table "public"."events" to "anon";

grant select on table "public"."events" to "anon";

grant trigger on table "public"."events" to "anon";

grant truncate on table "public"."events" to "anon";

grant update on table "public"."events" to "anon";

grant delete on table "public"."matches" to "anon";

grant insert on table "public"."matches" to "anon";

grant references on table "public"."matches" to "anon";

grant select on table "public"."matches" to "anon";

grant trigger on table "public"."matches" to "anon";

grant truncate on table "public"."matches" to "anon";

grant update on table "public"."matches" to "anon";

grant delete on table "public"."profiles" to "anon";

grant insert on table "public"."profiles" to "anon";

grant references on table "public"."profiles" to "anon";

grant select on table "public"."profiles" to "anon";

grant trigger on table "public"."profiles" to "anon";

grant truncate on table "public"."profiles" to "anon";

grant update on table "public"."profiles" to "anon";

0 comments on commit 51a4acf

Please sign in to comment.