File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change
1
+ # dbt_netsuite_source v0.2.3
2
+
3
+ ## 🚨 Breaking Changes 🚨:
4
+ [ PR #10 ] ( https://github.com/swishbi/dbt_netsuite_source/pull/10 ) includes the following breaking changes:
5
+ - Removes ` quantity ` and ` rate ` columns from ` stg_netsuite__transaction_lines ` model. This allows these columns to be added as pass through.
6
+
7
+ ## Contributors
8
+ - [ phillem15] ( https://github.com/phillem15 ) ([ #10 ] ( https://github.com/swishbi/dbt_netsuite_source/pull/10 ) )
9
+
1
10
# dbt_netsuite_source v0.2.2
2
11
3
12
## 🚨 Breaking Changes 🚨:
Original file line number Diff line number Diff line change 1
1
config-version : 2
2
2
require-dbt-version : [">=1.3.0", "<2.0.0"]
3
3
name : ' netsuite_source'
4
- version : ' 0.2.2 '
4
+ version : ' 0.2.3 '
5
5
6
6
models :
7
7
netsuite_source :
Original file line number Diff line number Diff line change @@ -5,17 +5,14 @@ renamed as (
5
5
select
6
6
id as transaction_line_id,
7
7
transaction as transaction_id,
8
+ linesequencenumber as transaction_line_number,
9
+ memo,
8
10
class as class_id,
9
11
department as department_id,
10
12
entity as entity_id,
11
13
location as location_id,
12
14
item as item_id,
13
15
subsidiary as subsidiary_id,
14
- linelastmodifieddate as line_last_modified_date,
15
- linesequencenumber as line_sequence_number,
16
- memo,
17
- quantity,
18
- rate,
19
16
cleared = ' T' as is_cleared,
20
17
commitmentfirm = ' T' as is_commitment_firm,
21
18
isbillable = ' T' as is_billable,
You can’t perform that action at this time.
0 commit comments