Your IP : 216.73.216.74


Current Path : /usr/share/doc/perl-DBIx-Class/t/lib/DBICTest/Schema/
Upload File :
Current File : //usr/share/doc/perl-DBIx-Class/t/lib/DBICTest/Schema/NoPrimaryKey.pm

package # hide from PAUSE
    DBICTest::Schema::NoPrimaryKey;

use warnings;
use strict;

use base qw/DBICTest::BaseResult/;

__PACKAGE__->table('noprimarykey');
__PACKAGE__->add_columns(
  'foo' => { data_type => 'integer' },
  'bar' => { data_type => 'integer' },
  'baz' => { data_type => 'integer' },
);

__PACKAGE__->add_unique_constraint(foo_bar => [ qw/foo bar/ ]);

1;