diff options
-rwxr-xr-x | FS/bin/freeside-setup | 3 | ||||
-rw-r--r-- | httemplate/docs/schema.html | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/FS/bin/freeside-setup b/FS/bin/freeside-setup index 27d02529c..bb122700a 100755 --- a/FS/bin/freeside-setup +++ b/FS/bin/freeside-setup @@ -336,6 +336,9 @@ sub tables_hash_hack { 'typenum', 'int', '', '', 'freq', 'int', 'NULL', '', 'prog', @perl_type, + 'disabled', 'char', 'NULL', 1, + 'username', 'varchar', '', $char_d, + '_password','varchar', '', $char_d, ], 'primary_key' => 'agentnum', 'unique' => [], diff --git a/httemplate/docs/schema.html b/httemplate/docs/schema.html index 9204bdc8f..bef567186 100644 --- a/httemplate/docs/schema.html +++ b/httemplate/docs/schema.html @@ -12,6 +12,9 @@ <li>typenum - <a href="#agent_type">agent type</a> <li>prog - (unimplemented) <li>freq - (unimplemented) + <li>disabled - Disabled flag, empty or 'Y' + <li>username - Username for the Agent interface + <li>_password - Password for the Agent interface </ul> <li><a name="agent_type" href="man/FS/agent_type.html">agent_type</a> - Agent types define groups of packages that you can then assign to particular agents. <ul> |