aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-02-18 00:20:08 -0800
committerredmatrix <git@macgirvin.com>2016-02-18 00:20:08 -0800
commit76bf892f9f52c0deee313a89929185e332877f85 (patch)
tree73708b0268833e5cad6c92347f433727e9416fc8 /install/schema_mysql.sql
parent879bc7192713b1411865058fad69b9ff5fdf860a (diff)
downloadvolse-hubzilla-76bf892f9f52c0deee313a89929185e332877f85.tar.gz
volse-hubzilla-76bf892f9f52c0deee313a89929185e332877f85.tar.bz2
volse-hubzilla-76bf892f9f52c0deee313a89929185e332877f85.zip
iconfig - add sharing variable
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r--install/schema_mysql.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index bb6ad24a2..693cad1a8 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -550,10 +550,12 @@ CREATE TABLE IF NOT EXISTS `iconfig` (
`cat` char(255) NOT NULL DEFAULT '',
`k` char(255) NOT NULL DEFAULT '',
`v` mediumtext NOT NULL,
+ `sharing` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `iid` (`iid`),
KEY `cat` (`cat`),
- KEY `k` (`k`)
+ KEY `k` (`k`),
+ KEY `sharing` (`sharing`),
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `issue` (