Perl5-CoreSmokeDB-Schema
view release on metacpan or search on metacpan
lib/Perl5/CoreSmokeDB/Schema/Result/SmokeConfig.pm view on Meta::CPAN
{
data_type => "integer",
is_auto_increment => 1,
is_nullable => 0,
sequence => "smoke_config_id_seq",
},
"md5",
{
data_type => "text",
is_nullable => 0,
original => { data_type => "varchar" },
},
"config",
{
data_type => "text",
is_nullable => 1,
original => { data_type => "varchar" },
},
);
=head1 PRIMARY KEY
=over 4
=item * L</id>
=back
=cut
__PACKAGE__->set_primary_key("id");
=head1 UNIQUE CONSTRAINTS
=head2 C<smoke_config_md5_key>
=over 4
=item * L</md5>
=back
=cut
__PACKAGE__->add_unique_constraint("smoke_config_md5_key", ["md5"]);
=head1 RELATIONS
=head2 reports
Type: has_many
Related object: L<Perl5::CoreSmokeDB::Schema::Result::Report>
=cut
__PACKAGE__->has_many(
"reports",
"Perl5::CoreSmokeDB::Schema::Result::Report",
{ "foreign.sconfig_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-09-06 09:15:22
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DEINsU6dlw5NyLK/K/pFaQ
# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;
( run in 2.415 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )