From a9a6d3fd6840aacedcd7d77512d1558c3713c8b5 Mon Sep 17 00:00:00 2001 From: Sung Won Chung Date: Tue, 9 Apr 2024 11:27:08 -0700 Subject: [PATCH 1/2] remove column --- 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 807fc84..8c86322 100644 --- a/models/staging/stg_payments.sql +++ b/models/staging/stg_payments.sql @@ -14,5 +14,5 @@ SELECT order_id, payment_method, amount / 100 AS amount, /* `amount` is currently stored in cents, so we convert it to dollars */ - "new_column" as new_column -- non-breaking change example + -- "new_column" as new_column -- non-breaking change example FROM demo.seed_raw_payments \ No newline at end of file From efbab72caadcdf6800b2b1a8dfed3b46c31ccfe9 Mon Sep 17 00:00:00 2001 From: Sung Won Chung Date: Tue, 9 Apr 2024 11:30:51 -0700 Subject: [PATCH 2/2] dummy commit --- 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 8c86322..7325878 100644 --- a/models/staging/stg_payments.sql +++ b/models/staging/stg_payments.sql @@ -14,5 +14,5 @@ SELECT order_id, payment_method, amount / 100 AS amount, /* `amount` is currently stored in cents, so we convert it to dollars */ - -- "new_column" as new_column -- non-breaking change example + -- "new_column" as new_column -- non-breaking change example FROM demo.seed_raw_payments \ No newline at end of file