diff options
author | the_systech <the_systech@users.sourceforge.net> | 2001-08-08 19:42:45 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2001-08-08 19:42:45 +0000 |
commit | 15f471cb5a6e3385d4f6cb9e72bcd26eb959b200 (patch) | |
tree | 7fb88608601c337c6d0484254d3c573e5fe610c1 /phpBB/db | |
parent | eb081dcb0fbae5aa8989424937699129654ab7a1 (diff) | |
download | forums-15f471cb5a6e3385d4f6cb9e72bcd26eb959b200.tar forums-15f471cb5a6e3385d4f6cb9e72bcd26eb959b200.tar.gz forums-15f471cb5a6e3385d4f6cb9e72bcd26eb959b200.tar.bz2 forums-15f471cb5a6e3385d4f6cb9e72bcd26eb959b200.tar.xz forums-15f471cb5a6e3385d4f6cb9e72bcd26eb959b200.zip |
Changes encorporate smily processing...
git-svn-id: file:///svn/phpbb/trunk@818 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db')
-rw-r--r-- | phpBB/db/mssql_schema.sql | bin | 40176 -> 40252 bytes | |||
-rw-r--r-- | phpBB/db/mysql_schema.sql | 3 | ||||
-rw-r--r-- | phpBB/db/postgres_schema.sql | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/db/mssql_schema.sql b/phpBB/db/mssql_schema.sql Binary files differindex 9b218b0ab9..48f5239e15 100644 --- a/phpBB/db/mssql_schema.sql +++ b/phpBB/db/mssql_schema.sql diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql index d01d6c5d6a..3492960bad 100644 --- a/phpBB/db/mysql_schema.sql +++ b/phpBB/db/mysql_schema.sql @@ -203,7 +203,8 @@ CREATE TABLE phpbb_posts ( post_username varchar(30), bbcode_uid char(10) NOT NULL, post_edit_time int(11), - post_edit_count smallint(4) DEFAULT '0' NOT NULL, + post_edit_count smallint(4) DEFAULT '0' NOT NULL, + enable_smiles smallint(4) DEFAULT '1' NOT NULL, PRIMARY KEY (post_id), KEY forum_id (forum_id), KEY topic_id (topic_id), diff --git a/phpBB/db/postgres_schema.sql b/phpBB/db/postgres_schema.sql index cf49def9b3..68a33d387e 100644 --- a/phpBB/db/postgres_schema.sql +++ b/phpBB/db/postgres_schema.sql @@ -210,6 +210,7 @@ CREATE TABLE phpbb_posts ( bbcode_uid varchar(10) DEFAULT '' NOT NULL, post_edit_time int4, post_edit_count int2 DEFAULT '0' NOT NULL, + enable_smiles int2 DEFAULT '1' NOT NULL, CONSTRAINT phpbb_posts_pkey PRIMARY KEY (post_id) ); CREATE INDEX forum_id_phpbb_posts_index ON phpbb_posts (forum_id); |