Also update database.sql

This commit is contained in:
Thomas Willingham 2014-02-25 21:12:19 +00:00
parent 8e3a16bcdd
commit 36085bc608

View file

@ -160,18 +160,18 @@ CREATE TABLE IF NOT EXISTS `channel` (
`channel_allow_gid` mediumtext NOT NULL,
`channel_deny_cid` mediumtext NOT NULL,
`channel_deny_gid` mediumtext NOT NULL,
`channel_r_stream` tinyint(3) unsigned NOT NULL DEFAULT '128',
`channel_r_profile` tinyint(3) unsigned NOT NULL DEFAULT '128',
`channel_r_photos` tinyint(3) unsigned NOT NULL DEFAULT '128',
`channel_r_abook` tinyint(3) unsigned NOT NULL DEFAULT '128',
`channel_w_stream` tinyint(3) unsigned NOT NULL DEFAULT '128',
`channel_w_wall` tinyint(3) unsigned NOT NULL DEFAULT '128',
`channel_w_tagwall` tinyint(3) unsigned NOT NULL DEFAULT '128',
`channel_w_comment` tinyint(3) unsigned NOT NULL DEFAULT '128',
`channel_w_mail` tinyint(3) unsigned NOT NULL DEFAULT '128',
`channel_w_photos` tinyint(3) unsigned NOT NULL DEFAULT '128',
`channel_w_chat` tinyint(3) unsigned NOT NULL DEFAULT '128',
`channel_a_delegate` tinyint(3) unsigned NOT NULL DEFAULT '0',
`channel_r_stream` int(10) unsigned NOT NULL DEFAULT '128',
`channel_r_profile` int(10) unsigned NOT NULL DEFAULT '128',
`channel_r_photos` int(10) unsigned NOT NULL DEFAULT '128',
`channel_r_abook` int(10) unsigned NOT NULL DEFAULT '128',
`channel_w_stream` int(10) unsigned NOT NULL DEFAULT '128',
`channel_w_wall` int(10) unsigned NOT NULL DEFAULT '128',
`channel_w_tagwall` int(10) unsigned NOT NULL DEFAULT '128',
`channel_w_comment` int(10) unsigned NOT NULL DEFAULT '128',
`channel_w_mail` int(10) unsigned NOT NULL DEFAULT '128',
`channel_w_photos` int(10) unsigned NOT NULL DEFAULT '128',
`channel_w_chat` int(10) unsigned NOT NULL DEFAULT '128',
`channel_a_delegate` int(10) unsigned NOT NULL DEFAULT '0',
`channel_r_storage` int(10) unsigned NOT NULL DEFAULT '128',
`channel_w_storage` int(10) unsigned NOT NULL DEFAULT '128',
`channel_r_pages` int(10) unsigned NOT NULL DEFAULT '128',