diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-09-22 22:14:05 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-09-22 22:14:05 +0000 |
commit | 1d7e3e0fd95fb5baf92937d1f911649cb1a665e9 (patch) | |
tree | e452132555a321548f9c61043354a2bfb9481ca0 /phpBB/develop/create_schema_files.php | |
parent | 587ec3fa77d90819148cdeda2b490bbf82632114 (diff) | |
download | forums-1d7e3e0fd95fb5baf92937d1f911649cb1a665e9.tar forums-1d7e3e0fd95fb5baf92937d1f911649cb1a665e9.tar.gz forums-1d7e3e0fd95fb5baf92937d1f911649cb1a665e9.tar.bz2 forums-1d7e3e0fd95fb5baf92937d1f911649cb1a665e9.tar.xz forums-1d7e3e0fd95fb5baf92937d1f911649cb1a665e9.zip |
some tiny fixes here and there
git-svn-id: file:///svn/phpbb/trunk@6383 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/develop/create_schema_files.php')
-rw-r--r-- | phpBB/develop/create_schema_files.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php index c655a2245a..2477b4aea5 100644 --- a/phpBB/develop/create_schema_files.php +++ b/phpBB/develop/create_schema_files.php @@ -986,7 +986,7 @@ function get_schema_struct() 'forum_name' => array('STEXT_UNI', ''), 'forum_desc' => array('TEXT_UNI', ''), 'forum_desc_bitfield' => array('VCHAR:252', ''), - 'forum_desc_options' => array('UINT:11', 0), + 'forum_desc_options' => array('UINT:11', 7), 'forum_desc_uid' => array('VCHAR:5', ''), 'forum_link' => array('VCHAR_UNI', ''), 'forum_password' => array('VCHAR_UNI:40', ''), @@ -995,7 +995,7 @@ function get_schema_struct() 'forum_rules' => array('TEXT_UNI', ''), 'forum_rules_link' => array('VCHAR_UNI', ''), 'forum_rules_bitfield' => array('VCHAR:252', ''), - 'forum_rules_options' => array('UINT:11', 0), + 'forum_rules_options' => array('UINT:11', 7), 'forum_rules_uid' => array('VCHAR:5', ''), 'forum_topics_per_page' => array('TINT:4', 0), 'forum_type' => array('TINT:4', 0), @@ -1064,7 +1064,7 @@ function get_schema_struct() 'group_name' => array('VCHAR_CI', ''), 'group_desc' => array('TEXT_UNI', ''), 'group_desc_bitfield' => array('VCHAR:252', ''), - 'group_desc_options' => array('UINT:11', 0), + 'group_desc_options' => array('UINT:11', 7), 'group_desc_uid' => array('VCHAR:5', ''), 'group_display' => array('BOOL', 0), 'group_avatar' => array('VCHAR', ''), |