1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

Changes encorporate smily processing...

git-svn-id: file:///svn/phpbb/trunk@818 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
the_systech
2001-08-08 19:42:45 +00:00
parent eb081dcb0f
commit 15f471cb5a
5 changed files with 33 additions and 14 deletions

Binary file not shown.

View File

@@ -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),

View File

@@ -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);