-
DBIx-Schema-Annotate 的历史发布记录为只读
资源介绍
名称
DBIx::Schema::Annotate - 添加表模式作为对 ORM 文件的注释。 这个模块的灵感来自 annotate_models。
概要
use DBIx::Schema::Annotate;
my $dbh = DBI->connect('....') or die $DBI::errstr;
my $annotate = DBIx::Schema::Annotate->new( dbh => $dbh );
$annotate->write_files(
dir => '...',
exception_rule => {
# todo
}
);
# Amon2 + Teng
$ carton exec -- perl -Ilib -MMyApp -MDBIx::Schema::Annotate -e 'my $c = MyApp->b