Update to 0.02000

PR:		93267
Submitted by:	Lars Balker Rasmussen <lars@balker.dk> (maintainer)
This commit is contained in:
Erwin Lansing 2006-02-13 09:41:29 +00:00
parent 2b84d4f6e9
commit 35aeab397d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=155903
3 changed files with 15 additions and 10 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= DBIx-Class-Schema-Loader
PORTVERSION= 0.01004
PORTVERSION= 0.02000
CATEGORIES= databases perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= DBIx

View File

@ -1,3 +1,3 @@
MD5 (DBIx-Class-Schema-Loader-0.01004.tar.gz) = c2080932390d1c7844a992071faf2c34
SHA256 (DBIx-Class-Schema-Loader-0.01004.tar.gz) = d47775e0c78a333492549785bafcd5fbdedf944d40861840fd1af3ddc32eb1d0
SIZE (DBIx-Class-Schema-Loader-0.01004.tar.gz) = 16497
MD5 (DBIx-Class-Schema-Loader-0.02000.tar.gz) = ed8d824159b2a0a788911ec36eb552f4
SHA256 (DBIx-Class-Schema-Loader-0.02000.tar.gz) = 00fe8f19a1b185c2ff84393dcf9832c5549b4d30e89e940d4c5aa4412596431b
SIZE (DBIx-Class-Schema-Loader-0.02000.tar.gz) = 17216

View File

@ -1,9 +1,3 @@
THIS IS A DEVELOPMENT RELEASE. This is 0.01xxx, the first public
releases. Expect things to be broken in various ways. Expect the entire
design to be fatally flawed. Expect the interfaces to change if it
becomes neccessary. It's mostly here for people to poke at it and find
the flaws in it. 0.02 will hopefully have some sanity when we get there.
DBIx::Class::Schema::Loader automates the definition of a
DBIx::Class::Schema by scanning table schemas and setting up columns and
primary keys.
@ -16,4 +10,15 @@ db-specific subclass for an unsupported db.
This module requires DBIx::Class 0.05 or later, and obsoletes
DBIx::Class::Loader for DBIx::Class version 0.05 and later.
While on the whole, the bare table definitions are fairly straightforward,
relationship creation is somewhat heuristic, especially in the choosing
of relationship types, join types, and relationship names. The relationships
generated by this module will probably never be as well-defined as
hand-generated ones. Because of this, over time a complex project will
probably wish to migrate off of L<DBIx::Class::Schema::Loader>.
It is designed more to get you up and running quickly against an existing
database, or to be effective for simple situations, rather than to be what
you use in the long term for a complex database/project.
WWW: http://search.cpan.org/dist/DBIx-Class-Schema-Loader/