diff options
author | ivan <ivan> | 2003-09-29 05:51:20 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-09-29 05:51:20 +0000 |
commit | e17e58178d528e16d45c333996f763afda55e054 (patch) | |
tree | c86db30d03f17fa34d7b1569f7f997968d49fc86 | |
parent | 4196bc59e8cceb04c6f76fab46ce249ff0178c43 (diff) |
added agent.disabled
agent.username
agent._password
-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> |