From d35b4f698baee40e32e6e8c241a8e81e85321526 Mon Sep 17 00:00:00 2001 From: Abhinav Singh Date: Mon, 11 Sep 2023 16:45:19 -0700 Subject: [PATCH] feat: [CODE-830]: add job uid to space table --- .../migrate/postgres/0026_alter_table_space_job_add_up.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/store/database/migrate/postgres/0026_alter_table_space_job_add_up.sql b/internal/store/database/migrate/postgres/0026_alter_table_space_job_add_up.sql index b73c7e5fb..d340d8f3b 100644 --- a/internal/store/database/migrate/postgres/0026_alter_table_space_job_add_up.sql +++ b/internal/store/database/migrate/postgres/0026_alter_table_space_job_add_up.sql @@ -1 +1 @@ -ALTER TABLE jobs ADD COLUMN space_latest_export_job_uid TEXT NOT NULL DEFAULT ''; +ALTER TABLE spaces ADD COLUMN space_latest_export_job_uid TEXT NOT NULL DEFAULT '';