aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2002-09-19 01:11:32 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2002-09-19 01:11:32 +0000
commite1e52497fa6ce9e5d1d496c8c1af3b3270d465b8 (patch)
treeee8766fffd58713d8f09f0d42f40f341311c130c /phpBB/install/schemas
parent13307c1360721ee1892ae5eb1e7d9d27ec6c3c76 (diff)
downloadforums-e1e52497fa6ce9e5d1d496c8c1af3b3270d465b8.tar
forums-e1e52497fa6ce9e5d1d496c8c1af3b3270d465b8.tar.gz
forums-e1e52497fa6ce9e5d1d496c8c1af3b3270d465b8.tar.bz2
forums-e1e52497fa6ce9e5d1d496c8c1af3b3270d465b8.tar.xz
forums-e1e52497fa6ce9e5d1d496c8c1af3b3270d465b8.zip
Preimplementation of smilies order, "smilies" changed into "emoticons" as per Bart comment and sql_query_array() fixed to allow FALSE values
git-svn-id: file:///svn/phpbb/trunk@2893 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas')
-rw-r--r--phpBB/install/schemas/mysql_schema.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql
index b1228dff87..c250a650a4 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -431,7 +431,9 @@ CREATE TABLE phpbb_smilies (
smile_url char(50),
smile_width tinyint(4) UNSIGNED NOT NULL,
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,
PRIMARY KEY (smilies_id)
);