1 package # hide from PAUSE
2 DBICTest::Schema::Track;
7 use base 'DBICTest::BaseResult';
8 use DBICTest::Util 'check_customcond_args';
10 __PACKAGE__->load_components(qw{
11 +DBICTest::DeployComponent
12 InflateColumn::DateTime
16 __PACKAGE__->table('track');
17 __PACKAGE__->add_columns(
19 data_type => 'integer',
20 is_auto_increment => 1,
23 data_type => 'integer',
30 data_type => 'varchar',
34 data_type => 'datetime',
35 accessor => 'updated_date',
39 data_type => 'datetime',
43 __PACKAGE__->set_primary_key('trackid');
45 __PACKAGE__->add_unique_constraint([ qw/cd position/ ]);
46 __PACKAGE__->add_unique_constraint([ qw/cd title/ ]);
48 __PACKAGE__->position_column ('position');
49 __PACKAGE__->grouping_column ('cd');
51 # the undef condition in this rel is *deliberate*
52 # tests oddball legacy syntax
53 __PACKAGE__->belongs_to( cd => 'DBICTest::Schema::CD', undef, {
54 proxy => { cd_title => 'title' },
56 __PACKAGE__->belongs_to( disc => 'DBICTest::Schema::CD' => 'cd', {
60 __PACKAGE__->might_have( cd_single => 'DBICTest::Schema::CD', 'single_track' );
61 __PACKAGE__->might_have( lyrics => 'DBICTest::Schema::Lyrics', 'track_id' );
63 __PACKAGE__->belongs_to(
65 "DBICTest::Schema::Year1999CDs",
67 { join_type => 'left' }, # the relationship is of course optional
69 __PACKAGE__->belongs_to(
71 "DBICTest::Schema::Year2000CDs",
73 { join_type => 'left' },
76 __PACKAGE__->has_many (
77 next_tracks => __PACKAGE__,
79 # This is for test purposes only. A regular user does not
80 # need to sanity check the passed-in arguments, this is what
81 # the tests are for :)
82 my $args = &check_customcond_args;
85 { "$args->{foreign_alias}.cd" => { -ident => "$args->{self_alias}.cd" },
86 "$args->{foreign_alias}.position" => { '>' => { -ident => "$args->{self_alias}.position" } },
88 $args->{self_rowobj} && {
89 "$args->{foreign_alias}.cd" => $args->{self_rowobj}->get_column('cd'),
90 "$args->{foreign_alias}.position" => { '>' => $args->{self_rowobj}->pos },
98 sub sqlt_deploy_hook {
101 $hook_cb->($class, @_) if $hook_cb;
102 $class->next::method(@_) if $class->next::can;