Skip to content

Commit

Permalink
add missing colors
Browse files Browse the repository at this point in the history
  • Loading branch information
alf-cactus committed Nov 20, 2024
1 parent fb606fe commit c417c60
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions documentation/revision-history-develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,3 +237,6 @@ bugfix release:

# 8.5.1 - 18.11.2024 DEVELOP
- fixing PDF generation

# 8.5.2 - 20.11.2024 DEVELOP
- add new colors to database
2 changes: 1 addition & 1 deletion inventory/group_vars/all.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### general settings
product_version: "8.5.1"
product_version: "8.5.2"
ansible_user: "{{ lookup('env', 'USER') }}"
ansible_become_method: sudo
ansible_python_interpreter: /usr/bin/python3
Expand Down
5 changes: 5 additions & 0 deletions roles/database/files/upgrade/8.5.2.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
insert into stm_color (color_name, color_rgb) VALUES ('crete blue', '485cd4') ON CONFLICT DO NOTHING;
insert into stm_color (color_name, color_rgb) VALUES ('state blue', 'a186ed') ON CONFLICT DO NOTHING;
insert into stm_color (color_name, color_rgb) VALUES ('olive', '617d28') ON CONFLICT DO NOTHING;
insert into stm_color (color_name, color_rgb) VALUES ('dark gold', 'cdad00') ON CONFLICT DO NOTHING;
insert into stm_color (color_name, color_rgb) VALUES ('dark gold', 'cdad00') ON CONFLICT DO NOTHING;

0 comments on commit c417c60

Please sign in to comment.