Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Class-Schema-Loader/Makefile,v retrieving revision 1.3 diff -u -a -r1.3 Makefile --- Makefile 8 Feb 2006 09:48:53 -0000 1.3 +++ Makefile 13 Feb 2006 07:33:33 -0000 @@ -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 Index: distinfo =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Class-Schema-Loader/distinfo,v retrieving revision 1.3 diff -u -a -r1.3 distinfo --- distinfo 8 Feb 2006 09:48:53 -0000 1.3 +++ distinfo 13 Feb 2006 07:33:33 -0000 @@ -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 Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Class-Schema-Loader/pkg-descr,v retrieving revision 1.1 diff -u -a -r1.1 pkg-descr --- pkg-descr 4 Feb 2006 19:45:40 -0000 1.1 +++ pkg-descr 13 Feb 2006 07:33:33 -0000 @@ -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,20 @@ 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. + +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. + +That being said, transitioning your code from a Schema generated by this +module to one that doesn't use this module should be straightforward and +painless, so don't shy away from it just for fears of the transition down +the road. + WWW: http://search.cpan.org/dist/DBIx-Class-Schema-Loader/