diff options
author | ivan <ivan> | 2007-05-21 02:18:44 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-05-21 02:18:44 +0000 |
commit | c8511e86ac99108b3646a4b57a3ba355312490ef (patch) | |
tree | 03f1ec4c27ff4245af265de3b250a2e3fceaa753 | |
parent | fd8490781ff425e85cbd507e1166fa786b5ceddc (diff) |
haven't had anyone use this in years, and for some reason DBIx::DBSchema can't reverse engineer the schema for it, causing freeside-upgrade to error out trying to recreate it
-rw-r--r-- | FS/FS/Schema.pm | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index c71bb01b4..9f244740d 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -1007,18 +1007,18 @@ sub tables_hashref { 'index' => [ [ 'last' ] ], }, - 'session' => { - 'columns' => [ - 'sessionnum', 'serial', '', '', '', '', - 'portnum', 'int', '', '', '', '', - 'svcnum', 'int', '', '', '', '', - 'login', @date_type, '', '', - 'logout', @date_type, '', '', - ], - 'primary_key' => 'sessionnum', - 'unique' => [], - 'index' => [ [ 'portnum' ] ], - }, +# 'session' => { +# 'columns' => [ +# 'sessionnum', 'serial', '', '', '', '', +# 'portnum', 'int', '', '', '', '', +# 'svcnum', 'int', '', '', '', '', +# 'login', @date_type, '', '', +# 'logout', @date_type, '', '', +# ], +# 'primary_key' => 'sessionnum', +# 'unique' => [], +# 'index' => [ [ 'portnum' ] ], +# }, 'queue' => { 'columns' => [ |