diff options
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r-- | install/schema_mysql.sql | 4 |
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` ( |