summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2007-01-09 22:57:21 +0000
committerivan <ivan>2007-01-09 22:57:21 +0000
commit79b683c8240f3f2447b41cdca80d888f0a47521c (patch)
tree31da63277296849979ff3eb4140c5948eaff832a /FS
parentb89c7f126690704c8d1558dba06d5fabd7470528 (diff)
2147483647 should be enough bytes for anyone!
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/Schema.pm18
1 files changed, 9 insertions, 9 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index 33baa0a88..9d3eb8060 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -841,12 +841,12 @@ sub tables_hashref {
'slipip', 'varchar', 'NULL', 15, '', '', #four TINYINTs, bah.
'seconds', 'int', 'NULL', '', '', '', #uhhhh
'seconds_threshold', 'int', 'NULL', '', '', '',
- 'upbytes', 'int', 'NULL', '', '', '',
- 'upbytes_threshold', 'int', 'NULL', '', '', '',
- 'downbytes', 'int', 'NULL', '', '', '',
- 'downbytes_threshold', 'int', 'NULL', '', '', '',
- 'totalbytes','int', 'NULL', '', '', '',
- 'totalbytes_threshold', 'int', 'NULL', '', '', '',
+ 'upbytes', 'bigint', 'NULL', '', '', '',
+ 'upbytes_threshold', 'bigint', 'NULL', '', '', '',
+ 'downbytes', 'bigint', 'NULL', '', '', '',
+ 'downbytes_threshold', 'bigint', 'NULL', '', '', '',
+ 'totalbytes','bigint', 'NULL', '', '', '',
+ 'totalbytes_threshold', 'bigint', 'NULL', '', '', '',
'domsvc', 'int', '', '', '', '',
],
'primary_key' => 'svcnum',
@@ -950,9 +950,9 @@ sub tables_hashref {
'identifier', 'varchar', '', $char_d, '', '',
'amount', @money_type, '', '',
'seconds', 'int', 'NULL', '', '', '',
- 'upbytes', 'int', 'NULL', '', '', '',
- 'downbytes', 'int', 'NULL', '', '', '',
- 'totalbytes', 'int', 'NULL', '', '', '',
+ 'upbytes', 'bigint', 'NULL', '', '', '',
+ 'downbytes', 'bigint', 'NULL', '', '', '',
+ 'totalbytes', 'bigint', 'NULL', '', '', '',
'agentnum', 'int', 'NULL', '', '', '',
],
'primary_key' => 'prepaynum',