fix h_cdr acctid changing from bigint to int with recent DBIx::DBSchema
[freeside.git] / FS / FS / Schema.pm
index a039003..ab46d97 100644 (file)
@@ -256,7 +256,7 @@ sub dbdef_dist {
             } );
     
             if ( $column->type =~ /^(\w*)SERIAL$/i ) {
-              $column->type('int');
+              $column->type(uc($1).'INT');
               $column->null('NULL');
             }
             #$column->default('')