Skip to content

Commit

Permalink
beep
Browse files Browse the repository at this point in the history
  • Loading branch information
Faith Lierheimer committed Oct 22, 2024
1 parent f348361 commit 0f71a7d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
1 change: 0 additions & 1 deletion models/staging/stripe/stg_stripe__payments.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
select
-- ids
id as payment_id,
orderid as order_id,

-- descriptions
paymentmethod as payment_method,
Expand Down
24 changes: 24 additions & 0 deletions models/staging/stripe/stg_stripe__payments.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
models:
- name: stg_stripe__payments
data_tests:
- filtered_unique
columns:
- name: payment_id
tests:
- unique
- not_null
- name: order_id
tests:
- not_null
- name: payment_method
tests:
- not_null
- name: status
tests:
- not_null
- name: amount
tests:
- not_null
- name: created_at
tests:
- not_null

0 comments on commit 0f71a7d

Please sign in to comment.