adding project_c Change-Id: Idc7c01ef529305c8c8b4e5c47d288c871bb9902c
diff --git a/project_c.model.lkml b/project_c.model.lkml new file mode 100644 index 0000000..281b855 --- /dev/null +++ b/project_c.model.lkml
@@ -0,0 +1,5 @@ +connection: "l4c_testing" + +include: "project_c.view.lkml" + +explore: project_c {}
diff --git a/project_c.view.lkml b/project_c.view.lkml new file mode 100644 index 0000000..96cdd7a --- /dev/null +++ b/project_c.view.lkml
@@ -0,0 +1,11 @@ +view: project_c{ + 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 C - ",${TABLE}.PLUGIN_NAME) ;; + } + +}