ETLp

 view release on metacpan or  search on metacpan

lib/ETLp/Schema/Result/EtlpConfiguration.pm  view on Meta::CPAN


=head2 config_name

  data_type: 'varchar2'
  is_nullable: 0
  size: 255

=head2 date_created

  data_type: 'datetime'
  is_nullable: 0
  original: {data_type => "date"}

=head2 date_updated

  data_type: 'datetime'
  is_nullable: 0
  original: {data_type => "date"}

=cut

__PACKAGE__->add_columns(
  "config_id",
  {
    data_type   => "integer",
    is_nullable => 0,
    original    => { data_type => "number", size => [38, 0] },
  },
  "config_name",
  { data_type => "varchar2", is_nullable => 0, size => 255 },
  "date_created",
  {
    data_type   => "datetime",
    is_nullable => 0,
    original    => { data_type => "date" },
  },
  "date_updated",
  {
    data_type   => "datetime",
    is_nullable => 0,
    original    => { data_type => "date" },
  },
);
__PACKAGE__->set_primary_key("config_id");
__PACKAGE__->add_unique_constraint("etlp_configuration_u1", ["config_name"]);

=head1 RELATIONS

=head2 etlp_sections

Type: has_many

Related object: L<ETLp::Schema::Result::EtlpSection>

=cut

__PACKAGE__->has_many(
  "etlp_sections",
  "ETLp::Schema::Result::EtlpSection",
  { "foreign.config_id" => "self.config_id" },
  { cascade_copy => 0, cascade_delete => 0 },
);


# Created by DBIx::Class::Schema::Loader v0.07000 @ 2010-05-12 15:25:39
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OsfnSjG9Vi3WLQwn1A/vQw

use Data::Page::Navigation;
# You can replace this text with custom content, and it will be preserved on regeneration
1;



( run in 1.041 second using v1.01-cache-2.11-cpan-140bd7fdf52 )