Standardize examples/docs on Schema::Loader schema naming
[dbsrgits/DBIx-Class.git] / examples / Schema / MyApp / Schema.pm
diff --git a/examples/Schema/MyApp/Schema.pm b/examples/Schema/MyApp/Schema.pm
new file mode 100644 (file)
index 0000000..3642e82
--- /dev/null
@@ -0,0 +1,9 @@
+package MyApp::Schema;
+
+use warnings;
+use strict;
+
+use base qw/DBIx::Class::Schema/;
+__PACKAGE__->load_namespaces;
+
+1;