aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-08-16 17:31:22 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-08-16 17:31:22 +0000
commitc261dfa420a45dc76c18797ccacd68dfb5d95b0a (patch)
treef70547e75c09c4fbe266d2fb810a6113c57a07a4 /phpBB
parent65805038b7c30ccc190d86356b5b3bec682878b0 (diff)
downloadforums-c261dfa420a45dc76c18797ccacd68dfb5d95b0a.tar
forums-c261dfa420a45dc76c18797ccacd68dfb5d95b0a.tar.gz
forums-c261dfa420a45dc76c18797ccacd68dfb5d95b0a.tar.bz2
forums-c261dfa420a45dc76c18797ccacd68dfb5d95b0a.tar.xz
forums-c261dfa420a45dc76c18797ccacd68dfb5d95b0a.zip
damn it, wrong table for now ...
git-svn-id: file:///svn/phpbb/trunk@2864 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/install/schemas/mysql_schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql
index 71e759d962..3e8bc7bb51 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -279,7 +279,6 @@ CREATE TABLE phpbb_posts (
poster_ip varchar(40) NOT NULL,
post_time int(11) DEFAULT '0' NOT NULL,
post_approved tinyint(1) DEFAULT '1' NOT NULL,
- post_checksum varchar(32) NOT NULL,
post_username varchar(30),
enable_bbcode tinyint(1) DEFAULT '1' NOT NULL,
enable_html tinyint(1) DEFAULT '0' NOT NULL,
@@ -303,6 +302,7 @@ CREATE TABLE phpbb_posts (
CREATE TABLE phpbb_posts_text (
post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
bbcode_uid varchar(10) NOT NULL,
+ post_checksum varchar(32) NOT NULL,
post_subject varchar(60),
post_text text,
PRIMARY KEY (post_id)