aaaa
Change-Id: I6d286927b6172d9f9d5df42bc02f5367a91c258c
diff --git a/aaaaa.model.lkml b/aaaaa.model.lkml
new file mode 100644
index 0000000..4bc6ae1
--- /dev/null
+++ b/aaaaa.model.lkml
@@ -0,0 +1,20 @@
+connection: "l4c_testing"
+
+include: "new_view.view.lkml" # include all views in the views/ folder in this project
+# include: "/**/*.view.lkml" # include all views in this project
+# include: "my_dashboard.dashboard.lookml" # include a LookML dashboard called my_dashboard
+
+# # Select the views that should be a part of this model,
+# # and define the joins that connect them together.
+#
+# explore: order_items {
+# join: orders {
+# relationship: many_to_one
+# sql_on: ${orders.id} = ${order_items.order_id} ;;
+# }
+#
+# join: users {
+# relationship: many_to_one
+# sql_on: ${users.id} = ${orders.user_id} ;;
+# }
+# }