-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add
logs
column to temp_data_migrations_audit
table and crea…
…te relationship from `flow` to `lowcal_sessions` (#4102)
- Loading branch information
1 parent
3421ae5
commit 91b16ea
Showing
3 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
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
1 change: 1 addition & 0 deletions
1
...ions/1734705022933_alter_table_public_temp_data_migrations_audit_add_column_logs/down.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 @@ | ||
alter table "public"."temp_data_migrations_audit" drop column "logs"; |
1 change: 1 addition & 0 deletions
1
...ations/1734705022933_alter_table_public_temp_data_migrations_audit_add_column_logs/up.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 @@ | ||
alter table "public"."temp_data_migrations_audit" add column "logs" text null; |