X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Changes;h=bb3dd54ae7695203539713e4496e885e7d11101f;hb=add8bcf0aabf53cddb452eda4d3b25a35bf57d25;hp=cd92137663a3506134d7e13112d83521b71e0122;hpb=958d5fcfc75fc334524e17147b07fb5acfdfee26;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/Changes b/Changes index cd92137..bb3dd54 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,37 @@ Revision history for Perl extension DBIx::Class::Schema::Loader + - SQLite: detect is_deferrable for inline FKs + - support coderefs for relationship_attrs + +0.07031 2012-09-06 15:07:08 + - fix 02pod.t failure due to lack of =encoding utf8 statement (patch by + Marcel Gruenauer) (RT#79481) + +0.07030 2012-09-06 03:27:09 + - allow user to set qualify_objects=0 in multischema configurations + (andrewalker) + +0.07029 2012-09-05 16:41:56 + - Oracle: introspect ON DELETE and DEFERRABLE FK clauses + - Oracle WARNING: on_delete is now 'NO ACTION' by default, not + 'CASCADE'. on_update is now 'NO ACTION' by default (Oracle does not + have update rules, this was done to preserve the behavior of the + schema when cross-deploying to SQLite.) is_deferrable is now + 0 by default, not 1. + - DB2: introspect ON DELETE/UPDATE FK clauses + - DB2 WARNING: the default for on_delete/on_update is now 'NO ACTION' + not 'CASCADE', the default for is_deferrable is still 1 because DB2 + does not have deferrable constraints. + - SQLite: introspect ON DELETE/UPDATE and DEFERRABLE FK clauses + - SQLite WARNING: the default for on_delete/on_update is now 'NO ACTION' + not 'CASCADE', and the default for is_deferrable is now 0 not 1. + +0.07028 2012-08-30 05:32:42 + - MSSQL: introspect ON DELETE/UPDATE clauses for foreign keys + - MSSQL WARNING: the default for on_delete/on_update is now 'NO ACTION' + not 'CASCADE'. + +0.07027 2012-08-26 22:39:45 - PostgreSQL: introspect ON DELETE/UPDATE clauses for foreign keys and the DEFERRABLE clause. - PostgreSQL WARNING: the default for on_delete/on_update attributes for