Skip to content

Commit

Permalink
Merge branch 'feat/migrations'
Browse files Browse the repository at this point in the history
  • Loading branch information
RaoHai committed Aug 21, 2024
2 parents 273f211 + 432db15 commit e339d2e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions migrations/supabase/migrations/20240821134902_remote_schema.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
alter table "public"."github_repo_config" alter column "id" set default gen_random_uuid();

alter table "public"."github_repo_config" alter column "id" drop identity;

alter table "public"."github_repo_config" alter column "id" set data type uuid using "id"::uuid;

alter table "public"."github_repo_config" alter column "repo_name" drop default;

alter table "public"."github_repo_config" alter column "robot_id" drop default;

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


0 comments on commit e339d2e

Please sign in to comment.