mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Change topic notification default to 0
git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3131 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
f6f800a017
commit
555b37d28f
4 changed files with 23 additions and 23 deletions
Binary file not shown.
|
@ -584,7 +584,7 @@ ALTER TABLE [phpbb_users] WITH NOCHECK ADD
|
||||||
CONSTRAINT [DF_phpbb_users_user_allowavatar] DEFAULT (1) FOR [user_allowavatar],
|
CONSTRAINT [DF_phpbb_users_user_allowavatar] DEFAULT (1) FOR [user_allowavatar],
|
||||||
CONSTRAINT [DF_phpbb_users_user_allow_pm] DEFAULT (1) FOR [user_allow_pm],
|
CONSTRAINT [DF_phpbb_users_user_allow_pm] DEFAULT (1) FOR [user_allow_pm],
|
||||||
CONSTRAINT [DF_phpbb_users_user_allow_viewonline] DEFAULT (1) FOR [user_allow_viewonline],
|
CONSTRAINT [DF_phpbb_users_user_allow_viewonline] DEFAULT (1) FOR [user_allow_viewonline],
|
||||||
CONSTRAINT [DF_phpbb_users_user_notify_pm] DEFAULT (1) FOR [user_notify_pm],
|
CONSTRAINT [DF_phpbb_users_user_notify_pm] DEFAULT (0) FOR [user_notify_pm],
|
||||||
CONSTRAINT [DF_phpbb_users_user_popup_pm] DEFAULT (1) FOR [user_popup_pm],
|
CONSTRAINT [DF_phpbb_users_user_popup_pm] DEFAULT (1) FOR [user_popup_pm],
|
||||||
CONSTRAINT [DF_phpbb_users_user_avatar_type] DEFAULT (0) FOR [user_avatar_type]
|
CONSTRAINT [DF_phpbb_users_user_avatar_type] DEFAULT (0) FOR [user_avatar_type]
|
||||||
GO
|
GO
|
||||||
|
|
|
@ -481,7 +481,7 @@ CREATE TABLE phpbb_users (
|
||||||
user_allow_pm tinyint(1) DEFAULT '1' NOT NULL,
|
user_allow_pm tinyint(1) DEFAULT '1' NOT NULL,
|
||||||
user_allow_viewonline tinyint(1) DEFAULT '1' NOT NULL,
|
user_allow_viewonline tinyint(1) DEFAULT '1' NOT NULL,
|
||||||
user_notify tinyint(1) DEFAULT '1' NOT NULL,
|
user_notify tinyint(1) DEFAULT '1' NOT NULL,
|
||||||
user_notify_pm tinyint(1) DEFAULT '1' NOT NULL,
|
user_notify_pm tinyint(1) DEFAULT '0' NOT NULL,
|
||||||
user_popup_pm tinyint(1) DEFAULT '0' NOT NULL,
|
user_popup_pm tinyint(1) DEFAULT '0' NOT NULL,
|
||||||
user_rank int(11) DEFAULT '0',
|
user_rank int(11) DEFAULT '0',
|
||||||
user_avatar varchar(100),
|
user_avatar varchar(100),
|
||||||
|
|
|
@ -199,8 +199,8 @@ CREATE TABLE phpbb_privmsgs (
|
||||||
privmsgs_ip char(8) NOT NULL,
|
privmsgs_ip char(8) NOT NULL,
|
||||||
privmsgs_enable_bbcode int2 DEFAULT '1' NOT NULL,
|
privmsgs_enable_bbcode int2 DEFAULT '1' NOT NULL,
|
||||||
privmsgs_enable_html int2 DEFAULT '0' NOT NULL,
|
privmsgs_enable_html int2 DEFAULT '0' NOT NULL,
|
||||||
privmsgs_enable_smilies int2 DEFAULT '1' NOT NULL,
|
privmsgs_enable_smilies int2 DEFAULT '1' NOT NULL,
|
||||||
privmsgs_attach_sig int2 DEFAULT '1' NOT NULL,
|
privmsgs_attach_sig int2 DEFAULT '1' NOT NULL,
|
||||||
CONSTRAINT phpbb_privmsgs_pkey PRIMARY KEY (privmsgs_id)
|
CONSTRAINT phpbb_privmsgs_pkey PRIMARY KEY (privmsgs_id)
|
||||||
);
|
);
|
||||||
CREATE INDEX privmsgs_from_userid_index ON phpbb_privmsgs (privmsgs_from_userid);
|
CREATE INDEX privmsgs_from_userid_index ON phpbb_privmsgs (privmsgs_from_userid);
|
||||||
|
@ -212,7 +212,7 @@ CREATE INDEX privmsgs_to_userid_index ON phpbb_privmsgs (privmsgs_to_userid);
|
||||||
-------------------------------------------------------- */
|
-------------------------------------------------------- */
|
||||||
CREATE TABLE phpbb_privmsgs_text (
|
CREATE TABLE phpbb_privmsgs_text (
|
||||||
privmsgs_text_id int4 DEFAULT '0' NOT NULL,
|
privmsgs_text_id int4 DEFAULT '0' NOT NULL,
|
||||||
privmsgs_bbcode_uid char(10) DEFAULT '0' NOT NULL,
|
privmsgs_bbcode_uid char(10) DEFAULT '0' NOT NULL,
|
||||||
privmsgs_text text,
|
privmsgs_text text,
|
||||||
CONSTRAINT phpbb_privmsgs_text_pkey PRIMARY KEY (privmsgs_text_id)
|
CONSTRAINT phpbb_privmsgs_text_pkey PRIMARY KEY (privmsgs_text_id)
|
||||||
);
|
);
|
||||||
|
@ -247,9 +247,9 @@ CREATE INDEX session_id_phpbb_search_results ON phpbb_search_results (session_i
|
||||||
Table structure for table phpbb_search_wordlist
|
Table structure for table phpbb_search_wordlist
|
||||||
-------------------------------------------------------- */
|
-------------------------------------------------------- */
|
||||||
CREATE TABLE phpbb_search_wordlist (
|
CREATE TABLE phpbb_search_wordlist (
|
||||||
word_id int4 DEFAULT nextval('phpbb_search_wordlist_id_seq'::text) NOT NULL,
|
word_id int4 DEFAULT nextval('phpbb_search_wordlist_id_seq'::text) NOT NULL,
|
||||||
word_text varchar(50) NOT NULL DEFAULT '',
|
word_text varchar(50) NOT NULL DEFAULT '',
|
||||||
word_common int2 NOT NULL DEFAULT '0',
|
word_common int2 NOT NULL DEFAULT '0',
|
||||||
CONSTRAINT phpbb_search_wordlist_pkey PRIMARY KEY (word_text)
|
CONSTRAINT phpbb_search_wordlist_pkey PRIMARY KEY (word_text)
|
||||||
);
|
);
|
||||||
CREATE INDEX word_id_phpbb_search_wordlist ON phpbb_search_wordlist (word_id);
|
CREATE INDEX word_id_phpbb_search_wordlist ON phpbb_search_wordlist (word_id);
|
||||||
|
@ -341,8 +341,8 @@ CREATE TABLE phpbb_themes (
|
||||||
span_class1 varchar(25),
|
span_class1 varchar(25),
|
||||||
span_class2 varchar(25),
|
span_class2 varchar(25),
|
||||||
span_class3 varchar(25),
|
span_class3 varchar(25),
|
||||||
img_size_poll int2,
|
img_size_poll int2,
|
||||||
img_size_privmsg int2,
|
img_size_privmsg int2,
|
||||||
CONSTRAINT phpbb_themes_pkey PRIMARY KEY (themes_id)
|
CONSTRAINT phpbb_themes_pkey PRIMARY KEY (themes_id)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -400,9 +400,9 @@ CREATE TABLE phpbb_topics (
|
||||||
topic_status int2 DEFAULT '0' NOT NULL,
|
topic_status int2 DEFAULT '0' NOT NULL,
|
||||||
topic_vote int2 DEFAULT '0' NOT NULL,
|
topic_vote int2 DEFAULT '0' NOT NULL,
|
||||||
topic_type int2 DEFAULT '0' NOT NULL,
|
topic_type int2 DEFAULT '0' NOT NULL,
|
||||||
topic_first_post_id int4 DEFAULT '0' NOT NULL,
|
topic_first_post_id int4 DEFAULT '0' NOT NULL,
|
||||||
topic_last_post_id int4 DEFAULT '0' NOT NULL,
|
topic_last_post_id int4 DEFAULT '0' NOT NULL,
|
||||||
topic_moved_id int4 DEFAULT '0' NOT NULL,
|
topic_moved_id int4 DEFAULT '0' NOT NULL,
|
||||||
CONSTRAINT phpbb_topics_pkey PRIMARY KEY (topic_id)
|
CONSTRAINT phpbb_topics_pkey PRIMARY KEY (topic_id)
|
||||||
);
|
);
|
||||||
CREATE INDEX forum_id_phpbb_topics_index ON phpbb_topics (forum_id);
|
CREATE INDEX forum_id_phpbb_topics_index ON phpbb_topics (forum_id);
|
||||||
|
@ -446,9 +446,9 @@ CREATE TABLE phpbb_users (
|
||||||
username varchar(25) DEFAULT '' NOT NULL,
|
username varchar(25) DEFAULT '' NOT NULL,
|
||||||
user_regdate int4 DEFAULT '0' NOT NULL,
|
user_regdate int4 DEFAULT '0' NOT NULL,
|
||||||
user_password varchar(32) DEFAULT '' NOT NULL,
|
user_password varchar(32) DEFAULT '' NOT NULL,
|
||||||
user_session_time int4 DEFAULT '0' NOT NULL,
|
user_session_time int4 DEFAULT '0' NOT NULL,
|
||||||
user_session_page int2 DEFAULT '0' NOT NULL,
|
user_session_page int2 DEFAULT '0' NOT NULL,
|
||||||
user_lastvisit int4 DEFAULT '0' NOT NULL,
|
user_lastvisit int4 DEFAULT '0' NOT NULL,
|
||||||
user_email varchar(255),
|
user_email varchar(255),
|
||||||
user_icq varchar(15),
|
user_icq varchar(15),
|
||||||
user_website varchar(100),
|
user_website varchar(100),
|
||||||
|
@ -462,10 +462,10 @@ CREATE TABLE phpbb_users (
|
||||||
user_yim varchar(255),
|
user_yim varchar(255),
|
||||||
user_msnm varchar(255),
|
user_msnm varchar(255),
|
||||||
user_posts int4 DEFAULT '0' NOT NULL,
|
user_posts int4 DEFAULT '0' NOT NULL,
|
||||||
user_new_privmsg int2 DEFAULT '0' NOT NULL,
|
user_new_privmsg int2 DEFAULT '0' NOT NULL,
|
||||||
user_unread_privmsg int2 DEFAULT '0' NOT NULL,
|
user_unread_privmsg int2 DEFAULT '0' NOT NULL,
|
||||||
user_last_privmsg int4 DEFAULT '0' NOT NULL,
|
user_last_privmsg int4 DEFAULT '0' NOT NULL,
|
||||||
user_emailtime int4,
|
user_emailtime int4,
|
||||||
user_viewemail int2,
|
user_viewemail int2,
|
||||||
user_attachsig int2,
|
user_attachsig int2,
|
||||||
user_allowhtml int2 DEFAULT '1',
|
user_allowhtml int2 DEFAULT '1',
|
||||||
|
@ -475,14 +475,14 @@ CREATE TABLE phpbb_users (
|
||||||
user_allowavatar int2 DEFAULT '1' NOT NULL,
|
user_allowavatar int2 DEFAULT '1' NOT NULL,
|
||||||
user_allow_viewonline int2 DEFAULT '1' NOT NULL,
|
user_allow_viewonline int2 DEFAULT '1' NOT NULL,
|
||||||
user_rank int4 DEFAULT '0',
|
user_rank int4 DEFAULT '0',
|
||||||
user_avatar varchar(100),
|
user_avatar varchar(100),
|
||||||
user_avatar_type int2 DEFAULT '0' NOT NULL,
|
user_avatar_type int2 DEFAULT '0' NOT NULL,
|
||||||
user_level int4 DEFAULT '1',
|
user_level int4 DEFAULT '1',
|
||||||
user_lang varchar(255),
|
user_lang varchar(255),
|
||||||
user_timezone decimal(5) DEFAULT '0' NOT NULL,
|
user_timezone decimal(5) DEFAULT '0' NOT NULL,
|
||||||
user_dateformat varchar(14) DEFAULT 'd M Y H:m' NOT NULL,
|
user_dateformat varchar(14) DEFAULT 'd M Y H:m' NOT NULL,
|
||||||
user_notify_pm int2 DEFAULT '1' NOT NULL,
|
user_notify_pm int2 DEFAULT '0' NOT NULL,
|
||||||
user_popup_pm int2 DEFAULT '0' NOT NULL,
|
user_popup_pm int2 DEFAULT '0' NOT NULL,
|
||||||
user_notify int2,
|
user_notify int2,
|
||||||
user_actkey varchar(32),
|
user_actkey varchar(32),
|
||||||
user_newpasswd varchar(32),
|
user_newpasswd varchar(32),
|
||||||
|
|
Loading…
Add table
Reference in a new issue