From 01fec9fa79501a759eabfb4235ae576bb6ba280e Mon Sep 17 00:00:00 2001 From: Dave Date: Fri, 19 Dec 2025 15:12:24 -0500 Subject: [PATCH] hotfix/missing-dms-migration - Add Back DMS_ID --- .../down.sql | 4 ++++ .../up.sql | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 hasura/migrations/1764704225560_alter_table_public_jobs_add_column_dms_id/down.sql create mode 100644 hasura/migrations/1764704225560_alter_table_public_jobs_add_column_dms_id/up.sql diff --git a/hasura/migrations/1764704225560_alter_table_public_jobs_add_column_dms_id/down.sql b/hasura/migrations/1764704225560_alter_table_public_jobs_add_column_dms_id/down.sql new file mode 100644 index 000000000..7ea4450db --- /dev/null +++ b/hasura/migrations/1764704225560_alter_table_public_jobs_add_column_dms_id/down.sql @@ -0,0 +1,4 @@ +-- Could not auto-generate a down migration. +-- Please write an appropriate down migration for the SQL below: +-- alter table "public"."jobs" add column "dms_id" text +-- null; diff --git a/hasura/migrations/1764704225560_alter_table_public_jobs_add_column_dms_id/up.sql b/hasura/migrations/1764704225560_alter_table_public_jobs_add_column_dms_id/up.sql new file mode 100644 index 000000000..d6eac4192 --- /dev/null +++ b/hasura/migrations/1764704225560_alter_table_public_jobs_add_column_dms_id/up.sql @@ -0,0 +1,2 @@ +alter table "public"."jobs" add column "dms_id" text + null;