creating view/model
Change-Id: I8ec5d1d3eb16af2b449cb07a883318546e3f8177
diff --git a/project_a_all_plugins.view.lkml b/project_a_all_plugins.view.lkml
new file mode 100644
index 0000000..618bc1f
--- /dev/null
+++ b/project_a_all_plugins.view.lkml
@@ -0,0 +1,11 @@
+view: project_a_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: ${TABLE}.PLUGIN_NAME ;;
+  }
+
+}
diff --git a/project_a_model.model.lkml b/project_a_model.model.lkml
new file mode 100644
index 0000000..1449de6
--- /dev/null
+++ b/project_a_model.model.lkml
@@ -0,0 +1,5 @@
+connection: "l4c_testing"
+
+include: "project_a_all_plugins.view.lkml"
+
+explore: project_a_all_plugins {}