Added the basic for multi column support. Original tests still pass, but the multicol...
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Employee.pm
index 63b6209..78b3d16 100644 (file)
@@ -1,11 +1,11 @@
 package # hide from PAUSE 
     DBICTest::Schema::Employee;
 
-use base 'DBIx::Class';
+use base 'DBIx::Class::Core';
 
-__PACKAGE__->load_components(qw( Ordered PK::Auto Core ));
+__PACKAGE__->load_components(qw( Ordered ));
 
-__PACKAGE__->table('employees');
+__PACKAGE__->table('employee');
 
 __PACKAGE__->add_columns(
     employee_id => {
@@ -29,6 +29,8 @@ __PACKAGE__->add_columns(
 __PACKAGE__->set_primary_key('employee_id');
 __PACKAGE__->position_column('position');
 
+#__PACKAGE__->add_unique_constraint(position_group => [ qw/position group_id/ ]);
+
 __PACKAGE__->mk_classdata('field_name_for', {
     employee_id => 'primary key',
     position    => 'list position',