1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
package # hide from PAUSE
DBICTest::Schema::Track;
use warnings;
use strict;
use base 'DBICTest::BaseResult';
use DBICTest::Util 'check_customcond_args';
__PACKAGE__->load_components(qw{
+DBICTest::DeployComponent
InflateColumn::DateTime
Ordered
});
__PACKAGE__->table('track');
__PACKAGE__->add_columns(
'trackid' => {
data_type => 'integer',
is_auto_increment => 1,
},
'cd' => {
data_type => 'integer',
},
'position' => {
data_type => 'int',
accessor => 'pos',
},
'title' => {
data_type => 'varchar',
size => 100,
},
last_updated_on => {
data_type => 'datetime',
accessor => 'updated_date',
is_nullable => 1
},
last_updated_at => {
data_type => 'datetime',
is_nullable => 1
},
);
__PACKAGE__->set_primary_key('trackid');
__PACKAGE__->add_unique_constraint([ qw/cd position/ ]);
__PACKAGE__->add_unique_constraint([ qw/cd title/ ]);
__PACKAGE__->position_column ('position');
__PACKAGE__->grouping_column ('cd');
# the undef condition in this rel is *deliberate*
# tests oddball legacy syntax
__PACKAGE__->belongs_to( cd => 'DBICTest::Schema::CD', undef, {
proxy => { cd_title => 'title' },
});
# custom condition coderef
__PACKAGE__->belongs_to( cd_cref_cond => 'DBICTest::Schema::CD',
sub {
# This is for test purposes only. A regular user does not
# need to sanity check the passed-in arguments, this is what
# the tests are for :)
my $args = &check_customcond_args;
return (
{
"$args->{foreign_alias}.cdid" => { -ident => "$args->{self_alias}.cd" },
},
! $args->{self_result_object} ? () : {
"$args->{foreign_alias}.cdid" => $args->{self_result_object}->get_column('cd')
},
! $args->{foreign_values} ? () : {
"$args->{self_alias}.cd" => $args->{foreign_values}{cdid}
},
);
}
);
__PACKAGE__->belongs_to( disc => 'DBICTest::Schema::CD' => 'cd', {
proxy => 'year'
});
__PACKAGE__->might_have( cd_single => 'DBICTest::Schema::CD', 'single_track' );
__PACKAGE__->might_have( lyrics => 'DBICTest::Schema::Lyrics', 'track_id' );
__PACKAGE__->belongs_to(
"year1999cd",
"DBICTest::Schema::Year1999CDs",
'cd',
{ join_type => 'left' }, # the relationship is of course optional
);
__PACKAGE__->belongs_to(
"year2000cd",
"DBICTest::Schema::Year2000CDs",
'cd',
{ join_type => 'left' },
);
__PACKAGE__->has_many (
next_tracks => __PACKAGE__,
sub {
# This is for test purposes only. A regular user does not
# need to sanity check the passed-in arguments, this is what
# the tests are for :)
my $args = &check_customcond_args;
return (
{ "$args->{foreign_alias}.cd" => { -ident => "$args->{self_alias}.cd" },
"$args->{foreign_alias}.position" => { '>' => { -ident => "$args->{self_alias}.position" } },
},
$args->{self_result_object} && {
"$args->{foreign_alias}.cd" => $args->{self_result_object}->get_column('cd'),
"$args->{foreign_alias}.position" => { '>' => $args->{self_result_object}->pos },
}
)
}
);
__PACKAGE__->has_many (
deliberately_broken_all_cd_tracks => __PACKAGE__,
sub {
# This is for test purposes only. A regular user does not
# need to sanity check the passed-in arguments, this is what
# the tests are for :)
my $args = &check_customcond_args;
return {
"$args->{foreign_alias}.cd" => "$args->{self_alias}.cd"
};
}
);
our $hook_cb;
sub sqlt_deploy_hook {
my $class = shift;
$hook_cb->($class, @_) if $hook_cb;
$class->next::method(@_) if $class->next::can;
}
1;
|