summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2013-12-28 17:23:16 -0800
committerIvan Kohler <ivan@freeside.biz>2013-12-28 17:23:16 -0800
commit1d922daa0a13eec5f7ea97159f6fe588d6bcee71 (patch)
tree185541e8342882723ac730ca4f5063e7278afe84
parent2fd370d2f80ff2b39992d2e646496179cb1b87ab (diff)
self-service access for contacts, RT#25533
-rw-r--r--FS/FS/Schema.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index 2a271f060..848e9bb38 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -1206,7 +1206,10 @@ sub tables_hashref {
'first', 'varchar', '', $char_d, '', '',
'title', 'varchar', 'NULL', $char_d, '', '', #eg Head Bottle Washer
'comment', 'varchar', 'NULL', 255, '', '',
- 'disabled', 'char', 'NULL', 1, '', '',
+ 'selfservice_access', 'char', 'NULL', 1, '', '',
+ '_password', 'varchar', 'NULL', $char_d, '', '',
+ '_password_encoding', 'varchar', 'NULL', $char_d, '', '',
+ 'disabled', 'char', 'NULL', 1, '', '',
],
'primary_key' => 'contactnum',
'unique' => [],