Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Notification templates initialization fix #397

Merged
merged 2 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions scripts/database/initial_insert.mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1632,12 +1632,6 @@ INSERT INTO notification_event_item (notification_id, event_key, event_value)
# ----------------------------------------------------------
# insert into table notification_event_item
# ----------------------------------------------------------
INSERT INTO notification_event_item (notification_id, event_key, event_value)
VALUES
(15, 'TransportEmailTemplate', 'Default');
# ----------------------------------------------------------
# insert into table notification_event_item
# ----------------------------------------------------------
INSERT INTO notification_event_item (notification_id, event_key, event_value)
VALUES
(15, 'Transports', 'Email');
Expand Down Expand Up @@ -1680,12 +1674,6 @@ INSERT INTO notification_event_item (notification_id, event_key, event_value)
# ----------------------------------------------------------
# insert into table notification_event_item
# ----------------------------------------------------------
INSERT INTO notification_event_item (notification_id, event_key, event_value)
VALUES
(16, 'TransportEmailTemplate', 'Default');
# ----------------------------------------------------------
# insert into table notification_event_item
# ----------------------------------------------------------
INSERT INTO notification_event_item (notification_id, event_key, event_value)
VALUES
(16, 'Transports', 'Email');
Expand Down
12 changes: 0 additions & 12 deletions scripts/database/initial_insert.oracle.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1634,12 +1634,6 @@ INSERT INTO notification_event_item (notification_id, event_key, event_value)
-- ----------------------------------------------------------
-- insert into table notification_event_item
-- ----------------------------------------------------------
INSERT INTO notification_event_item (notification_id, event_key, event_value)
VALUES
(15, 'TransportEmailTemplate', 'Default');
-- ----------------------------------------------------------
-- insert into table notification_event_item
-- ----------------------------------------------------------
INSERT INTO notification_event_item (notification_id, event_key, event_value)
VALUES
(15, 'Transports', 'Email');
Expand Down Expand Up @@ -1682,12 +1676,6 @@ INSERT INTO notification_event_item (notification_id, event_key, event_value)
-- ----------------------------------------------------------
-- insert into table notification_event_item
-- ----------------------------------------------------------
INSERT INTO notification_event_item (notification_id, event_key, event_value)
VALUES
(16, 'TransportEmailTemplate', 'Default');
-- ----------------------------------------------------------
-- insert into table notification_event_item
-- ----------------------------------------------------------
INSERT INTO notification_event_item (notification_id, event_key, event_value)
VALUES
(16, 'Transports', 'Email');
Expand Down
12 changes: 0 additions & 12 deletions scripts/database/initial_insert.postgresql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1633,12 +1633,6 @@ INSERT INTO notification_event_item (notification_id, event_key, event_value)
-- ----------------------------------------------------------
-- insert into table notification_event_item
-- ----------------------------------------------------------
INSERT INTO notification_event_item (notification_id, event_key, event_value)
VALUES
(15, 'TransportEmailTemplate', 'Default');
-- ----------------------------------------------------------
-- insert into table notification_event_item
-- ----------------------------------------------------------
INSERT INTO notification_event_item (notification_id, event_key, event_value)
VALUES
(15, 'Transports', 'Email');
Expand Down Expand Up @@ -1681,12 +1675,6 @@ INSERT INTO notification_event_item (notification_id, event_key, event_value)
-- ----------------------------------------------------------
-- insert into table notification_event_item
-- ----------------------------------------------------------
INSERT INTO notification_event_item (notification_id, event_key, event_value)
VALUES
(16, 'TransportEmailTemplate', 'Default');
-- ----------------------------------------------------------
-- insert into table notification_event_item
-- ----------------------------------------------------------
INSERT INTO notification_event_item (notification_id, event_key, event_value)
VALUES
(16, 'Transports', 'Email');
Expand Down
10 changes: 0 additions & 10 deletions scripts/database/initial_insert.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2140,11 +2140,6 @@ Your Znuny Team
<Data Key="event_key" Type="Quote">Recipients</Data>
<Data Key="event_value" Type="Quote">AgentOwner</Data>
</Insert>
<Insert Table="notification_event_item">
<Data Key="notification_id">15</Data>
<Data Key="event_key" Type="Quote">TransportEmailTemplate</Data>
<Data Key="event_value" Type="Quote">Default</Data>
</Insert>
<Insert Table="notification_event_item">
<Data Key="notification_id">15</Data>
<Data Key="event_key" Type="Quote">Transports</Data>
Expand Down Expand Up @@ -2186,11 +2181,6 @@ Your Znuny Team
<Data Key="event_key" Type="Quote">LanguageID</Data>
<Data Key="event_value" Type="Quote">en</Data>
</Insert>
<Insert Table="notification_event_item">
<Data Key="notification_id">16</Data>
<Data Key="event_key" Type="Quote">TransportEmailTemplate</Data>
<Data Key="event_value" Type="Quote">Default</Data>
</Insert>
<Insert Table="notification_event_item">
<Data Key="notification_id">16</Data>
<Data Key="event_key" Type="Quote">Transports</Data>
Expand Down
Loading