diff options
author | ivan <ivan> | 2009-12-31 07:16:54 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-12-31 07:16:54 +0000 |
commit | 7f0a9b07d23daf15c333b31228a6b20f967d4ef9 (patch) | |
tree | c30f9a0eb5ded78d766cc59642ae51451a5d3448 | |
parent | 0195e9f2c91aa8201ddabb0489ea98a0662d9e0b (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 a039003c7..ab46d97eb 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('') |