diff options
author | ivan <ivan> | 2007-05-21 02:19:16 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-05-21 02:19:16 +0000 |
commit | f74c8f98095e864c167116856670d88f5492cce2 (patch) | |
tree | 10188a57a30ec41d60a8ca141fd6243be2095620 | |
parent | 2da16dd43198e18474f71769f02324b79e3678d7 (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 5af75913a..463f63774 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -1005,18 +1005,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' => [ |