diff options
author | zotlabs <mike@macgirvin.com> | 2017-04-12 17:32:28 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-04-12 18:46:15 -0700 |
commit | 1c32564536cbfa12bd21a1c8161921b13d7dcc66 (patch) | |
tree | dd861e977bdf5883f952699e84e2b74b9d79f7cb /install/schema_mysql.sql | |
parent | 63dd6ad01a173d640e5c49dede1246dba840aa74 (diff) | |
download | volse-hubzilla-1c32564536cbfa12bd21a1c8161921b13d7dcc66.tar.gz volse-hubzilla-1c32564536cbfa12bd21a1c8161921b13d7dcc66.tar.bz2 volse-hubzilla-1c32564536cbfa12bd21a1c8161921b13d7dcc66.zip |
backend infrastructure for 'channel protection password'; which will be used to optionally encrypt export files and resolve channel/identity ownership/hijacking disputes
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r-- | install/schema_mysql.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index f3d46fa73..5b554583c 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -265,6 +265,8 @@ CREATE TABLE IF NOT EXISTS `channel` ( `channel_removed` tinyint(1) NOT NULL DEFAULT '0', `channel_system` tinyint(1) NOT NULL DEFAULT '0', `channel_moved` char(255) NOT NULL DEFAULT '', + `channel_password` varchar(255) NOT NULL, + `channel_salt` varchar(255) NOT NULL, PRIMARY KEY (`channel_id`), UNIQUE KEY `channel_address_unique` (`channel_address`), KEY `channel_account_id` (`channel_account_id`), |