From 7818b8a150bd171540eaf7f59f7c78f068f2ad82 Mon Sep 17 00:00:00 2001 From: Paul Pham Date: Fri, 8 Sep 2023 21:46:15 +0000 Subject: [PATCH 1/2] test comment --- models/staging/stg_customers.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/models/staging/stg_customers.sql b/models/staging/stg_customers.sql index 95cc547..62ff20c 100644 --- a/models/staging/stg_customers.sql +++ b/models/staging/stg_customers.sql @@ -21,3 +21,4 @@ renamed as ( ) select * from renamed +-- add a comment here to test From 6981b30555c39289c2eaed30f381fd5c86d6c460 Mon Sep 17 00:00:00 2001 From: Paul Pham Date: Fri, 8 Sep 2023 21:51:43 +0000 Subject: [PATCH 2/2] test again --- models/staging/stg_payments.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/staging/stg_payments.sql b/models/staging/stg_payments.sql index bd89427..5a771a0 100644 --- a/models/staging/stg_payments.sql +++ b/models/staging/stg_payments.sql @@ -14,7 +14,7 @@ renamed as ( id as payment_id, order_id, payment_method, - + amount as raw_value, --`amount` is currently stored in cents, so we convert it to dollars amount / 100 as amount