creating project_b view Change-Id: I42286f18d2c0434a85a6db4b23258cdc2788813e
diff --git a/project_b_all_plugins.view.lkml b/project_b_all_plugins.view.lkml new file mode 100644 index 0000000..5283fe2 --- /dev/null +++ b/project_b_all_plugins.view.lkml
@@ -0,0 +1,11 @@ +view: project_b_all_plugins { + sql_table_name: information_schema.ALL_PLUGINS ;; + # + # Define your dimensions and measures here, like this: + dimension: plugin_name { + description: "Unique ID for each user that has ordered" + type: string + sql: CONCAT("Project B - ",${TABLE}.PLUGIN_NAME) ;; + } + +}
diff --git a/project_b_model.model.lkml b/project_b_model.model.lkml new file mode 100644 index 0000000..1b47d1d --- /dev/null +++ b/project_b_model.model.lkml
@@ -0,0 +1,5 @@ +connection: "l4c_testing" + +include: "project_b_all_plugins.view.lkml" + +explore: project_b_all_plugins {}
diff --git a/testing_project_b.view.lkml b/testing_project_b.view.lkml deleted file mode 100644 index fc76cf9..0000000 --- a/testing_project_b.view.lkml +++ /dev/null
@@ -1,3 +0,0 @@ -view: testing_project_b { - -}