Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion miltom_ci_enablement.model.lkml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ explore: order_items {
}
join: dim_products {
relationship: many_to_one
sql_on: ${dim_products.product_id} = ${order_items.product_id} ;;
sql_on: ${dim_products.individual_product_id} = ${order_items.product_id} ;;
}
join: dim_users {
relationship: many_to_one
Expand Down
2 changes: 1 addition & 1 deletion views/dimensions/dim_products.view.lkml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ view: dim_products {
view_label: "Products"
label: "Products"

dimension: product_id {
dimension: individual_product_id {
type: number
primary_key: yes
hidden: yes
Expand Down