New, failing SQLT deployment order test.
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / LoadTest / Result / Mixin.pm
index 95a9007..10eb205 100644 (file)
@@ -1,17 +1,19 @@
-package # hide from PAUSE
-       LoadTest::Result::Mixin;
+package    # hide from PAUSE
+    LoadTest::Result::Mixin;
 
 use strict;
 use warnings;
-use parent qw(DBIx::Class::Core);
+use parent 'DBIx::Class::Core';
 
 __PACKAGE__->table('mixin');
 
 __PACKAGE__->add_columns(
-  id => {
-    data_type => 'integer', is_auto_increment => 1, sequence => 'foo_id_seq'
-  },
-  words => { data_type => 'text' }
+    id => {
+        data_type         => 'integer',
+        is_auto_increment => 1,
+        sequence          => 'foo_id_seq'
+    },
+    words => { data_type => 'text' }
 );
 
 __PACKAGE__->set_primary_key('id');