Introduce GOVERNANCE document and empty RESOLUTIONS file.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Employee.pm
index 5eec03e..dde6fd3 100644 (file)
@@ -1,11 +1,14 @@
-package # hide from PAUSE 
+package # hide from PAUSE
     DBICTest::Schema::Employee;
 
-use base 'DBIx::Class';
+use warnings;
+use strict;
 
-__PACKAGE__->load_components(qw( Positional PK::Auto Core ));
+use base qw/DBICTest::BaseResult/;
 
-__PACKAGE__->table('employees');
+__PACKAGE__->load_components(qw( Ordered ));
+
+__PACKAGE__->table('employee');
 
 __PACKAGE__->add_columns(
     employee_id => {
@@ -19,21 +22,33 @@ __PACKAGE__->add_columns(
         data_type => 'integer',
         is_nullable => 1,
     },
+    group_id_2 => {
+        data_type => 'integer',
+        is_nullable => 1,
+    },
+    group_id_3 => {
+        data_type => 'integer',
+        is_nullable => 1,
+    },
     name => {
         data_type => 'varchar',
         size      => 100,
         is_nullable => 1,
     },
+    encoded => {
+        data_type => 'integer',
+        is_nullable => 1,
+    },
 );
 
 __PACKAGE__->set_primary_key('employee_id');
 __PACKAGE__->position_column('position');
 
-__PACKAGE__->mk_classdata('field_name_for', {
-    employee_id => 'primary key',
-    position    => 'list position',
-    group_id    => 'collection column',
-    name        => 'employee name',
+# Do not add unique constraints here - different groups are used throughout
+# the ordered tests
+
+__PACKAGE__->belongs_to (secretkey => 'DBICTest::Schema::Encoded', 'encoded', {
+  join_type => 'left'
 });
 
 1;