X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FInterBase.pm;h=fbcf8af29451efe7547b777c37c635f663211519;hb=bugfix-permit-preserve-case%3D0;hp=d5b62e143dafaf5dc2a76daf08f4753c9e0927c5;hpb=bb46cd4b8d2cf185f37b632bc339d9669267c7fb;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/InterBase.pm b/lib/DBIx/Class/Schema/Loader/DBI/InterBase.pm index d5b62e1..fbcf8af 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/InterBase.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/InterBase.pm @@ -9,7 +9,7 @@ use List::Util 'first'; use namespace::clean; use DBIx::Class::Schema::Loader::Table (); -our $VERSION = '0.07021'; +our $VERSION = '0.07022'; sub _supports_db_schema { 0 } @@ -25,7 +25,7 @@ See L and L. =head1 COLUMN NAME CASE ISSUES By default column names from unquoted DDL will be generated in lowercase, for -consistency with other backends. +consistency with other backends. Set the L option to true if you would like to have column names in the internal case, which is @@ -50,7 +50,7 @@ sub _setup { $self->next::method(@_); - if (not defined $self->preserve_case) { + if (not $self->preserve_case) { $self->preserve_case(0); } elsif ($self->preserve_case) {