diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2012-07-30 16:33:40 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2012-07-30 16:33:40 -0700 |
| commit | 72ae9f328b19c381ff9350aab77f527ecfdd7513 (patch) | |
| tree | 329d9d9ef32e6c1fe2d50ab98be4020c6eb1662c | |
| parent | d80073cfc680610510eab052d1dd6294a295815a (diff) | |
fix multiple RADIUS group attributes with same name, RT#18580
| -rw-r--r-- | FS/FS/Schema.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index 097799bf1..c38c52cc8 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -2443,8 +2443,8 @@ sub tables_hashref { 'op', 'char', '', 2, '', '', ], 'primary_key' => 'attrnum', - 'unique' => [ ['groupnum','attrname'] ], #? - 'index' => [], + 'unique' => [], + 'index' => [ ['groupnum'], ], }, 'msgcat' => { |
