-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathdbt_project.yml
More file actions
71 lines (67 loc) · 2.55 KB
/
Copy pathdbt_project.yml
File metadata and controls
71 lines (67 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: 'github_integration_tests'
version: '1.1.0'
config-version: 2
profile: 'integration_tests'
vars:
github:
github_schema: github_integration_tests_1
github_issue_assignee_identifier: "github_issue_assignee_data"
github_issue_closed_history_identifier: "github_issue_closed_history_data"
github_issue_comment_identifier: "github_issue_comment_data"
github_issue_label_identifier: "github_issue_label_data"
github_label_identifier: "github_label_data"
github_issue_merged_identifier: "github_issue_merged_data"
github_issue_identifier: "github_issue_data"
github_pull_request_review_identifier: "github_pull_request_review_data"
github_pull_request_identifier: "github_pull_request_data"
github_repository_identifier: "github_repository_data"
github_repo_team_identifier: "github_repo_team_data"
github_requested_reviewer_history_identifier: "github_requested_reviewer_history_data"
github_team_identifier: "github_team_data"
github_user_identifier: "github_user_data"
models:
+schema: "github_{{ var('directed_schema','dev') }}"
seeds:
+docs:
show: false
github_integration_tests:
+quote_columns: "{{ true if target.type == 'redshift' else false }}"
+column_types:
_fivetran_synced: timestamp
github_issue_comment_data:
+column_types:
id: "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"
github_issue_merged_data:
+column_types:
merged_at: timestamp
github_issue_data:
+column_types:
closed_at: timestamp
created_at: timestamp
updated_at: timestamp
github_issue_label_data:
+column_types:
issue_id: "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"
label_id: "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"
github_label_data:
+column_types:
id: "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"
github_issue_closed_history_data:
+column_types:
updated_at: timestamp
github_pull_request_review_data:
+column_types:
id: "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"
submitted_at: timestamp
github_repository_data:
+column_types:
created_at: timestamp
github_requested_reviewer_history_data:
+column_types:
created_at: timestamp
dispatch:
- macro_namespace: dbt_utils
search_order: ['spark_utils', 'dbt_utils']
flags:
send_anonymous_usage_stats: False
use_colors: True