From 03322625497af8ba217b4fb61a3751da9578501f Mon Sep 17 00:00:00 2001 From: Adrien Nortain <43404315+ZenikAdrien@users.noreply.github.com> Date: Thu, 1 Sep 2022 17:46:17 +0200 Subject: [PATCH] :wrench: Fix and add certifications (#194) --- hasura/seeds/08-certifications.sql | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/hasura/seeds/08-certifications.sql b/hasura/seeds/08-certifications.sql index 4156ad8d..33050d88 100644 --- a/hasura/seeds/08-certifications.sql +++ b/hasura/seeds/08-certifications.sql @@ -4,7 +4,7 @@ INSERT INTO "Certification" ("name", "certBody", "verified") VALUES ('Advanced Certified Scrum Master', 'Scrum Alliance', true), ('Certified Scrum Professional Scrum Master', 'Scrum Alliance', true), ('Certified Scrum Product Owner', 'Scrum Alliance', true), -('Advamced Certified Scrum Product Owner', 'Scrum Alliance', true), +('Advanced Certified Scrum Product Owner', 'Scrum Alliance', true), ('Certified Scrum Professional Product Owner', 'Scrum Alliance', true), ('Professional Scrum Master 1', 'scrum.org', true), ('Professional Scrum Master 2', 'scrum.org', true), @@ -12,6 +12,7 @@ INSERT INTO "Certification" ("name", "certBody", "verified") VALUES ('Professional Scrum Product Owner 1', 'scrum.org', true), ('Professional Scrum Product Owner 2', 'scrum.org', true), ('Professional Scrum Product Owner 3', 'scrum.org', true), +('Professional Scrum Developer 1', 'scrum.org', true), ('Certified SAFe 4 Scrum Master', 'SAFe', true), ('Certified SAFe 5 Scrum Master', 'SAFe', true), ('Certified SAFe 4 Lean Portfolio Manager', 'SAFe', true), @@ -30,10 +31,12 @@ INSERT INTO "Certification" ("name", "certBody", "verified") VALUES ('Certified Kubernetes Administrator', 'CNCF', true), ('Certified Kubernetes Security Specialist', 'CNCF', true), ('Associate Cloud Engineer', 'Google', true), +('Professional Cloud Developer', 'Google', true), ('Professional Cloud Architect', 'Google', true), ('Professional Cloud Security Engineer', 'Google', true), ('Professional Cloud Devops Engineer', 'Google', true), ('Professional Data Engineer', 'Google', true), +('Professional ML Engineer', 'Google', true), ('BigQuery Qualified Developer', 'Google', true), ('TensorFlow Developer', 'TensorFlow', true), ('AWS Certified Cloud Practitioner', 'AWS', true), @@ -41,9 +44,10 @@ INSERT INTO "Certification" ("name", "certBody", "verified") VALUES ('AWS Certified Solutions Architect - Professional', 'AWS', true), ('AWS Certified Developer - Associate', 'AWS', true), ('AWS Certified SysOps Administrator - Associate', 'AWS', true), -('AWS Certified DevOps Engineer – Professional', 'AWS', true), -('AWS Certified Big Data – Specialty', 'AWS', true), -('AWS Certified Security – Specialty', 'AWS', true), +('AWS Certified DevOps Engineer - Professional', 'AWS', true), +('AWS Certified Big Data - Specialty', 'AWS', true), +('AWS Certified Security - Specialty', 'AWS', true), +('AWS Certified Machine Learning - Specialty', 'AWS', true), ('Microsoft Certified: Azure Administrator Associate', 'Microsoft', true), ('Microsoft Certified: Azure Data Scientist Associate', 'Microsoft', true), ('Microsoft Certified Solutions Associate: Cloud', 'Microsoft', true), @@ -79,5 +83,7 @@ INSERT INTO "Certification" ("name", "certBody", "verified") VALUES ('Certificat de connaissance Numérique Responsable', 'INR', true), ('Offensive Security Certified Professional', 'Offensive Security', true), ('TOGAF 9 Certified', 'The Open Group', true), -('TOGAF 9 Foundation', 'The Open Group', true) +('TOGAF 9 Foundation', 'The Open Group', true), +('Lean Green Belt', 'APMG International', true), +('FinOps Certified Practitioner', 'The Linux Foundation', true) ON CONFLICT DO NOTHING; \ No newline at end of file