create schema for staging/stripe

This commit is contained in:
Pablo Martin 2024-02-16 17:11:37 +01:00
parent fa413a4c6e
commit c369482c97

View file

@ -0,0 +1,29 @@
version: 2
models:
- name: stg_stripe__balance_transactions
description: "Balance transactions from all our Stripe balance accounts."
columns:
- name: id
description: "The primary key for the transaction."
tests:
- unique
- not_null
- name: stg_stripe__charges
description: "Charges from all our Stripe accounts."
columns:
- name: id
description: "The primary key for the charge."
tests:
- unique
- not_null
- name: stg_stripe__payment_intents
description: "Payment intents from all our Stripe accounts."
columns:
- name: id
description: "The primary key for the Payment intent."
tests:
- unique
- not_null