X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=DBSchema.pm;h=5cda990c9dc861bdef61acc23850afcb8c7e1005;hb=97b7dfe0e0b88049797972b2dd8de26fcaf97f3d;hp=6b6b1c2b5efbeab71e896ff1b66b6312f4143c7b;hpb=f0bdd7cafeeb8515c035bc40acd2cd7d37b020ed;p=DBIx-DBSchema.git diff --git a/DBSchema.pm b/DBSchema.pm index 6b6b1c2..5cda990 100644 --- a/DBSchema.pm +++ b/DBSchema.pm @@ -10,7 +10,7 @@ use DBIx::DBSchema::Column; use DBIx::DBSchema::ColGroup::Unique; use DBIx::DBSchema::ColGroup::Index; -$VERSION = "0.34_02"; +$VERSION = "0.35"; $VERSION = eval $VERSION; # modperlstyle: convert the string into a number $DEBUG = 0; @@ -406,7 +406,7 @@ sub pretty_print { ? " 'using' => '". $index->using ."',\n" : '' ). - " 'unique' => ". $index->_unique .",\n". + " 'unique' => ". $index->unique .",\n". " 'columns' => [ '". join("', '", @{$index->columns} ). "' ],\n". @@ -424,6 +424,9 @@ sub pretty_print { =item pretty_read HASHREF +This method is B recommended. If you need to load and save your schema +to a file, see the L and L methods. + Creates a schema as specified by a data structure such as that created by B method. @@ -498,7 +501,11 @@ Charles Shapiro and Mitchell Friedman Daniel Hanks contributed the Oracle driver. -Jesse Vincent contributed the SQLite driver. +Jesse Vincent contributed the SQLite driver and fixes to quiet down +internal usage of the old API. + +Slaven Rezic contributed column and table dropping, Pg +bugfixes and more. =head1 CONTRIBUTIONS