create schema for staging/stripe
This commit is contained in:
parent
fa413a4c6e
commit
c369482c97
1 changed files with 29 additions and 0 deletions
29
models/staging/stripe/schema.yml
Normal file
29
models/staging/stripe/schema.yml
Normal 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue