- or download this
package YV::Table::ArticleAuthor;
use base 'YV::Table::DBI';
...
__PACKAGE__->hasa(YV::Table::Article => 'article_id');
# other methods
- or download this
use YV::Table::ArticleAuthor;
...
next unless $delete_article_xref{$_->article_id};
$_[0]->delete();
}
- or download this
__PACKAGE__->columns(All => qw/article_id author_id/);
- or download this
# Under Construction