From 1cb6ee49e40f5756fe41c6349ffa345bb84236fd Mon Sep 17 00:00:00 2001 From: dtookey Date: Mon, 7 Aug 2023 12:53:37 -0400 Subject: [PATCH] Added a review_contributions table for the different reviewed statuses --- src/sql/0-run-first/contributions.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/0-run-first/contributions.sql b/src/sql/0-run-first/contributions.sql index a07eec0..3ffd157 100644 --- a/src/sql/0-run-first/contributions.sql +++ b/src/sql/0-run-first/contributions.sql @@ -131,7 +131,7 @@ SELECT CONCAT(users.email) AS `Technician`, project_lifecycle.project_number AS `ProjectNumber`, Date(project_lifecycle.timestamp) as `DateStamp`, new_value AS `ActionType`, - SUBSTR(project_lifecycle.project_number, 0, 3) AS `Region` + SUBSTR(project_lifecycle.project_number, 1, 3) AS `Region` FROM users INNER JOIN project_lifecycle ON pkey = modifier INNER JOIN projects ap on project_lifecycle.project_number = ap.refnum