-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from diggerhq/main
merge main into feat/encrypt-variables
- Loading branch information
Showing
3 changed files
with
6 additions
and
0 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
supabase/migrations/20240802162507_digger_add_varspec_to_job.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,2 @@ | ||
ALTER TABLE digger_jobs | ||
ADD COLUMN variables_spec BYTEA NULL; |
2 changes: 2 additions & 0 deletions
2
supabase/migrations/20240802175431_digger_add_orgid_to_match.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,2 @@ | ||
ALTER TABLE digger_batches | ||
ADD COLUMN new_column_name UUID NULL |
2 changes: 2 additions & 0 deletions
2
supabase/migrations/20240805090656_digger_job_rename_to_org_id.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,2 @@ | ||
ALTER TABLE digger_batches | ||
RENAME COLUMN new_column_name TO organization_id; |