DBIx-Class-AuditAny
view release on metacpan or search on metacpan
t/lib/TestSchema/Sakila/Result/Category.pm view on Meta::CPAN
__PACKAGE__->table("category");
=head1 ACCESSORS
=head2 category_id
data_type: 'tinyint'
extra: {unsigned => 1}
is_auto_increment: 1
is_nullable: 0
=head2 name
data_type: 'varchar'
is_nullable: 0
size: 25
=head2 last_update
data_type: 'timestamp'
datetime_undef_if_invalid: 1
default_value: current_timestamp
is_nullable: 0
=cut
__PACKAGE__->add_columns(
"category_id",
{
data_type => "tinyint",
extra => { unsigned => 1 },
is_auto_increment => 1,
is_nullable => 0,
},
"name",
{ data_type => "varchar", is_nullable => 0, size => 25 },
"last_update",
{
data_type => "timestamp",
datetime_undef_if_invalid => 1,
default_value => \"current_timestamp",
is_nullable => 0,
},
);
__PACKAGE__->set_primary_key("category_id");
=head1 RELATIONS
=head2 film_categories
Type: has_many
Related object: L<TestSchema::Sakila::Result::FilmCategory>
=cut
__PACKAGE__->has_many(
"film_categories",
"TestSchema::Sakila::Result::FilmCategory",
{ "foreign.category_id" => "self.category_id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07010 @ 2013-02-17 16:15:04
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FUFmM8sj+adV0Szue+HLfQ
# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;
( run in 0.649 second using v1.01-cache-2.11-cpan-97f6503c9c8 )