feature/IO-3096-GlobalNotifications - Checkpoint, merge master, ready DB

This commit is contained in:
Dave Richer
2025-02-24 12:05:40 -05:00
parent e892e4cab1
commit a5cf81bd28
12 changed files with 142 additions and 48 deletions

View File

@@ -3256,6 +3256,7 @@
query_params: {}
template_engine: Kriti
url: '{{$base_url}}/notifications/events/handleJobLinesChange'
version: 1
- table:
name: joblines_status
schema: public

View File

@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."notifications" add column "html_body" text
-- not null;

View File

@@ -0,0 +1,2 @@
alter table "public"."notifications" add column "html_body" text
not null;

View File

@@ -0,0 +1 @@
alter table "public"."notifications" alter column "fcm_title" set not null;

View File

@@ -0,0 +1 @@
alter table "public"."notifications" alter column "fcm_title" drop not null;

View File

@@ -0,0 +1 @@
alter table "public"."notifications" alter column "fcm_message" set not null;

View File

@@ -0,0 +1 @@
alter table "public"."notifications" alter column "fcm_message" drop not null;