Skip to content

Commit

Permalink
Added small SQL script to insert current news into dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
johausmann committed Jan 5, 2024
1 parent eae5b9d commit f4808c1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/sql/20231026_add_initial_news.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
INSERT INTO news_section_on(published_date, message_text, message_type) VALUES('2023-09-14','New Covigator package release [Release 2.2.2](https://github.com/TRON-Bioinformatics/covigator/releases/tag/v2.2.2)', 'RELEASE');

Check failure on line 1 in scripts/sql/20231026_add_initial_news.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scripts/sql/20231026_add_initial_news.sql#L1

Expected SET ANSI_NULLS ON near top of file

Check failure on line 1 in scripts/sql/20231026_add_initial_news.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scripts/sql/20231026_add_initial_news.sql#L1

Expected SET NOCOUNT ON near top of file

Check failure on line 1 in scripts/sql/20231026_add_initial_news.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scripts/sql/20231026_add_initial_news.sql#L1

Expected SET QUOTED_IDENTIFIER ON near top of file

Check failure on line 1 in scripts/sql/20231026_add_initial_news.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scripts/sql/20231026_add_initial_news.sql#L1

Expected SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED near top of file

Check failure on line 1 in scripts/sql/20231026_add_initial_news.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scripts/sql/20231026_add_initial_news.sql#L1

Object name not schema qualified
INSERT INTO news_section_on(published_date, message_text, message_type) VALUES('2023-10-26','The Covid19Data Portal data update is currently missing lineage calls. We are running the lineage determination separately and will publish a new update soon', 'BUGS');

Check failure on line 2 in scripts/sql/20231026_add_initial_news.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scripts/sql/20231026_add_initial_news.sql#L2

Object name not schema qualified
INSERT INTO news_section_on(published_date, message_text, message_type) VALUES('2024-01-04','New Covigator package release [Release 2.2.3](https://github.com/TRON-Bioinformatics/covigator/releases/tag/v2.2.3)', 'RELEASE');

Check failure on line 3 in scripts/sql/20231026_add_initial_news.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scripts/sql/20231026_add_initial_news.sql#L3

Object name not schema qualified
INSERT INTO news_section_on(published_date, message_text, message_type) VALUES('2023-11-18','New Covigator NGS pipeline release [Release 0.18.1](https://github.com/TRON-Bioinformatics/covigator-ngs-pipeline/releases/tag/v0.18.1). In this version, minor bugs have been fixed and new pipeline modes have been added.', 'RELEASE');

Check failure on line 4 in scripts/sql/20231026_add_initial_news.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scripts/sql/20231026_add_initial_news.sql#L4

Object name not schema qualified

0 comments on commit f4808c1

Please sign in to comment.