AtomBus

 view release on metacpan or  search on metacpan

lib/AtomBus/Schema/Result/AtomBusFeed.pm  view on Meta::CPAN

  author_email => { data_type => "varchar", is_nullable => 1, size => 255 },
  updated =>      { data_type => "varchar", is_nullable => 0, size => 100 },
);
__PACKAGE__->set_primary_key("id");
__PACKAGE__->add_unique_constraint("title_unique", ["title"]);

__PACKAGE__->has_many(
  "atombus_entries",
  "AtomBus::Schema::Result::AtomBusEntry",
  { "foreign.feed_title" => "self.title" },
  { cascade_copy => 0, cascade_delete => 0 },
);


1;

__END__
=pod

=head1 NAME



( run in 0.547 second using v1.01-cache-2.11-cpan-49f99fa48dc )