diff options
author | the_systech <the_systech@users.sourceforge.net> | 2001-07-05 20:38:22 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2001-07-05 20:38:22 +0000 |
commit | 8d0bc60aaa0dc2579199c6df41ebe63a5a1b64bd (patch) | |
tree | d0f243838e1ff4410b78376b3fd31c63027dab3c /phpBB | |
parent | 41d3905951a0b5fbf32904ab2e8c4f5bb7984dbb (diff) | |
download | forums-8d0bc60aaa0dc2579199c6df41ebe63a5a1b64bd.tar forums-8d0bc60aaa0dc2579199c6df41ebe63a5a1b64bd.tar.gz forums-8d0bc60aaa0dc2579199c6df41ebe63a5a1b64bd.tar.bz2 forums-8d0bc60aaa0dc2579199c6df41ebe63a5a1b64bd.tar.xz forums-8d0bc60aaa0dc2579199c6df41ebe63a5a1b64bd.zip |
Fix for removed selected field from config table
git-svn-id: file:///svn/phpbb/trunk@574 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/db/mysql_basic.sql | 2 | ||||
-rw-r--r-- | phpBB/db/mysql_schema.sql | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/db/mysql_basic.sql b/phpBB/db/mysql_basic.sql index 2f4d2d3e8a..fbc766b9b6 100644 --- a/phpBB/db/mysql_basic.sql +++ b/phpBB/db/mysql_basic.sql @@ -4,7 +4,7 @@ # $Id$ # -- Config -INSERT INTO phpbb_config (config_id, sitename, allow_html, allow_bbcode, allow_smilies, allow_sig, allow_namechange, selected, posts_per_page, hot_threshold, topics_per_page, flood_interval, allow_theme_create, override_themes, email_sig, email_from, default_theme, default_lang, default_dateformat, system_timezone, sys_template, avatar_filesize, avatar_path, allow_avatar_upload, avatar_max_width, avatar_max_height, allow_avatar_local) VALUES ( '1', 'phpbb.com', '0', '1', '1', '1', '0', '1', '10', '10', '25', '10', '0', '0', '', '', '1', 'english', 'd M Y H:i', '0', 'Default', '6144', 'images/avatars', '0', '70', '70', '0'); +INSERT INTO phpbb_config (config_id, sitename, allow_html, allow_bbcode, allow_smilies, allow_sig, allow_namechange, posts_per_page, hot_threshold, topics_per_page, flood_interval, allow_theme_create, override_themes, email_sig, email_from, default_theme, default_lang, default_dateformat, system_timezone, sys_template, avatar_filesize, avatar_path, allow_avatar_upload, avatar_max_width, avatar_max_height, allow_avatar_local) VALUES ( '1', 'phpbb.com', '0', '1', '1', '1', '0', '10', '10', '25', '10', '0', '0', '', '', '1', 'english', 'd M Y H:i', '0', 'Default', '6144', 'images/avatars', '0', '70', '70', '0'); # -- Categories INSERT INTO phpbb_categories (cat_id, cat_title, cat_order) VALUES (1, 'Test category 1', 1); diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql index 5defa9b9f3..22dbc5e071 100644 --- a/phpBB/db/mysql_schema.sql +++ b/phpBB/db/mysql_schema.sql @@ -121,7 +121,6 @@ CREATE TABLE phpbb_config ( prune_enable tinyint(1) DEFAULT '1' NOT NULL, gzip_compress tinyint(1) DEFAULT '0' NOT NULL, PRIMARY KEY (config_id), - UNIQUE selected (selected) ); |