From 501133f1eddb9be197836b486ccf23f951c245ea Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Tue, 17 Oct 2023 06:41:29 +0200 Subject: [PATCH] fix native worker, add back postgresql --- backend/migrations/20231017043506_addback_postgresql.down.sql | 1 + backend/migrations/20231017043506_addback_postgresql.up.sql | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 backend/migrations/20231017043506_addback_postgresql.down.sql create mode 100644 backend/migrations/20231017043506_addback_postgresql.up.sql diff --git a/backend/migrations/20231017043506_addback_postgresql.down.sql b/backend/migrations/20231017043506_addback_postgresql.down.sql new file mode 100644 index 0000000000..d2f607c5b8 --- /dev/null +++ b/backend/migrations/20231017043506_addback_postgresql.down.sql @@ -0,0 +1 @@ +-- Add down migration script here diff --git a/backend/migrations/20231017043506_addback_postgresql.up.sql b/backend/migrations/20231017043506_addback_postgresql.up.sql new file mode 100644 index 0000000000..d9fb48106e --- /dev/null +++ b/backend/migrations/20231017043506_addback_postgresql.up.sql @@ -0,0 +1,3 @@ +-- Add up migration script here +UPDATE config set config = '{"worker_tags": ["nativets", "postgresql", "mysql", "graphql", "snowflake", "bigquery"]}'::jsonb +where name = 'worker__native' and config = '{"worker_tags": ["nativets", "postgresq", "mysql", "graphql", "snowflake", "bigquery"]}'::jsonb; \ No newline at end of file