diff options
author | ivan <ivan> | 2009-12-31 07:17:26 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-12-31 07:17:26 +0000 |
commit | 16bc14ce6d2559a63838649e6e0d656e5dcadda8 (patch) | |
tree | bdfc186391482171c255aa1b581f2b0d0d462967 | |
parent | d258e716cafdf90ca623905fe476d2f39fa4f032 (diff) |
fix h_cdr acctid changing from bigint to int with recent DBIx::DBSchema
-rw-r--r-- | FS/FS/Schema.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index 2efcd472a..e5bb4fe15 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -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('') |