some work
This commit is contained in:
parent
06da79c495
commit
5b5c878c2a
1 changed files with 106 additions and 3 deletions
|
|
@ -4,7 +4,110 @@ sources:
|
|||
- name: core
|
||||
schema: sync_core
|
||||
tables:
|
||||
- name: user
|
||||
identifier: User
|
||||
- name: User
|
||||
description: A User.
|
||||
columns:
|
||||
- name: Id
|
||||
data_type: character varying
|
||||
quote: True
|
||||
description: "UUID for the user."
|
||||
tests:
|
||||
- unique
|
||||
- not_null
|
||||
# - dbt_expectations.expect_column_values_to_match_regex:
|
||||
# regex: "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$"
|
||||
- name: code
|
||||
data_type: bigint
|
||||
description: ""
|
||||
- name: email
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: title
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: dealid
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: deleted
|
||||
data_type: boolean
|
||||
description: ""
|
||||
- name: joindate
|
||||
data_type: timestamp without time zone
|
||||
description: ""
|
||||
- name: lastname
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: username
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: firstname
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: codeprefix
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: billingtown
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: companyname
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: dateofbirth
|
||||
data_type: timestamp without time zone
|
||||
description: ""
|
||||
- name: phonenumber
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: passwordhash
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: accounttypeid
|
||||
data_type: bigint
|
||||
description: ""
|
||||
- name: createduserid
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: securitystamp
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: emailconfirmed
|
||||
data_type: boolean
|
||||
description: ""
|
||||
- name: lockoutenabled
|
||||
data_type: boolean
|
||||
description: ""
|
||||
- name: billingpostcode
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: billingcountryid
|
||||
data_type: bigint
|
||||
description: ""
|
||||
- name: twofactorenabled
|
||||
data_type: boolean
|
||||
description: ""
|
||||
- name: accessfailedcount
|
||||
data_type: bigint
|
||||
description: ""
|
||||
- name: lockoutenddateutc
|
||||
data_type: timestamp without time zone
|
||||
description: ""
|
||||
- name: billingaddressline1
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: billingaddressline2
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: phonenumberconfirmed
|
||||
data_type: boolean
|
||||
description: ""
|
||||
- name: _airbyte_raw_id
|
||||
data_type: character varying
|
||||
description: ""
|
||||
- name: _airbyte_extracted_at
|
||||
data_type: timestamp with time zone
|
||||
description: ""
|
||||
- name: _airbyte_meta
|
||||
data_type: jsonb
|
||||
description: ""
|
||||
- name: superhog_user
|
||||
identifier: SuperhogUser
|
||||
identifier: SuperhogUser
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue