Skip to content

Commit

Permalink
Don't augment LMS organization public IDs
Browse files Browse the repository at this point in the history
They are now stored with all qualifiers in LMS
  • Loading branch information
marcospri committed Jun 10, 2024
1 parent 299c266 commit b1b3347
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CREATE MATERIALIZED VIEW lms.organizations AS (
raw_organizations AS (
SELECT
CONCAT('us-', id) AS id,
CONCAT('us.lms.org.', public_id) AS public_id,
public_id,
name,
'us' AS region,
created,
Expand All @@ -17,7 +17,7 @@ CREATE MATERIALIZED VIEW lms.organizations AS (

SELECT
CONCAT('ca-', id) AS id,
CONCAT('ca.lms.org.', public_id) AS public_id,
public_id,
name,
'ca' AS region,
created,
Expand Down

0 comments on commit b1b3347

Please sign in to comment.