New, failing SQLT deployment order test.
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / CafeInsertion / Result / Coffee.pm
index 4b4fdce..0dc65b0 100644 (file)
@@ -1,4 +1,5 @@
-package CafeInsertion::Result::Coffee;
+package    # hide from PAUSE
+    CafeInsertion::Result::Coffee;
 
 use strict;
 use warnings;
@@ -8,8 +9,13 @@ use aliased 'DBIx::Class::ResultSource::MultipleTableInheritance' => 'MTI';
 __PACKAGE__->table_class(MTI);
 __PACKAGE__->table('coffee');
 __PACKAGE__->add_columns(
-    "id",     { data_type => "integer", is_auto_increment => 1, sequence => '_coffee_id_seq'},
-    "flavor", { data_type => "text",    default_value     => "good" },
+    "id",
+    {   data_type         => "integer",
+        is_auto_increment => 1,
+        sequence          => '_coffee_id_seq'
+    },
+    "flavor",
+    { data_type => "text", default_value => "good" },
 );
 
 __PACKAGE__->set_primary_key("id");