rearrange column ordering
This commit is contained in:
parent
bbeee7a4dc
commit
8497a7bdd3
2 changed files with 4 additions and 4 deletions
|
|
@ -36,11 +36,11 @@ with
|
|||
{{ adapter.quote("exchange_rate") }},
|
||||
{{ adapter.quote("sourced_transfers") }},
|
||||
{{ adapter.quote("reporting_category") }},
|
||||
{{ adapter.quote("stripe_source_account") }},
|
||||
{{ adapter.quote("_airbyte_extracted_at") }} as dwh_extracted_at_utc,
|
||||
cast(
|
||||
{{ adapter.quote("_airbyte_extracted_at") }} as date
|
||||
) as dwh_extracted_date_utc,
|
||||
{{ adapter.quote("stripe_source_account") }}
|
||||
) as dwh_extracted_date_utc
|
||||
|
||||
from raw_balance_transactions bt
|
||||
left join
|
||||
|
|
|
|||
|
|
@ -69,11 +69,11 @@ with
|
|||
{{ adapter.quote("failure_balance_transaction") }},
|
||||
{{ adapter.quote("statement_descriptor_suffix") }},
|
||||
{{ adapter.quote("calculated_statement_descriptor") }},
|
||||
{{ adapter.quote("stripe_source_account") }},
|
||||
{{ adapter.quote("_airbyte_extracted_at") }} as dwh_extracted_at_utc,
|
||||
cast(
|
||||
{{ adapter.quote("_airbyte_extracted_at") }} as date
|
||||
) as dwh_extracted_date_utc,
|
||||
{{ adapter.quote("stripe_source_account") }}
|
||||
) as dwh_extracted_date_utc
|
||||
|
||||
from raw_charges ch
|
||||
left join
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue