-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
migrations/supabase/migrations/20240821134902_remote_schema.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
|
||
|