aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2002-11-05 06:38:09 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2002-11-05 06:38:09 +0000
commita583f7bd10539ddb764276049928a9e8cf4263f5 (patch)
treefd3c25ce332827d129fc7336bf2609e3707ef6df /phpBB/install
parentbc6e36ef4f79132029f4f27f592872311724097b (diff)
downloadforums-a583f7bd10539ddb764276049928a9e8cf4263f5.tar
forums-a583f7bd10539ddb764276049928a9e8cf4263f5.tar.gz
forums-a583f7bd10539ddb764276049928a9e8cf4263f5.tar.bz2
forums-a583f7bd10539ddb764276049928a9e8cf4263f5.tar.xz
forums-a583f7bd10539ddb764276049928a9e8cf4263f5.zip
ALTER TABLE phpbb_smilies CHANGE smile_on_posting display_on_posting
git-svn-id: file:///svn/phpbb/trunk@3008 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-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 c0e216906d..a1272438f2 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -415,7 +415,7 @@ CREATE TABLE phpbb_smilies (
smile_height tinyint(4) UNSIGNED NOT NULL,
smile_order tinyint(4) UNSIGNED NOT NULL,
emoticon char(50),
- smile_on_posting tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
+ display_on_posting tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
PRIMARY KEY (smilies_id)
);