release 0.07005
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / SQLAnywhere.pm
index 6fc5769..9cb3147 100644 (file)
@@ -9,7 +9,7 @@ use base qw/
 /;
 use Carp::Clan qw/^DBIx::Class/;
 
-our $VERSION = '0.07002';
+our $VERSION = '0.07005';
 
 =head1 NAME
 
@@ -102,9 +102,6 @@ EOF
         elsif ($info->{data_type} eq 'float') {
             $info->{data_type} = 'real';
         }
-        elsif ($info->{data_type} =~ /^uniqueidentifier(?:str)?\z/) {
-            $info->{auto_nextval} = 1;
-        }
 
         delete $info->{default_value} if ref($info->{default_value}) eq 'SCALAR' && ${ $info->{default_value} } eq 'NULL';