aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-12-29 13:24:41 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-12-29 13:24:41 +0000
commit16484c61b11ce0760f52657d2127f556e0cc1469 (patch)
treef1e037f38216cd4f57d59bc259751398a3054e2a /phpBB/install
parente99f48e8bc96d673e5bb5adcbe3eb5e5ce8b46c5 (diff)
downloadforums-16484c61b11ce0760f52657d2127f556e0cc1469.tar
forums-16484c61b11ce0760f52657d2127f556e0cc1469.tar.gz
forums-16484c61b11ce0760f52657d2127f556e0cc1469.tar.bz2
forums-16484c61b11ce0760f52657d2127f556e0cc1469.tar.xz
forums-16484c61b11ce0760f52657d2127f556e0cc1469.zip
Add logo to imageset
git-svn-id: file:///svn/phpbb/trunk@4705 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/schemas/mysql_schema.sql5
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql
index 3890638bee..d8f1c51c1e 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -251,7 +251,9 @@ CREATE TABLE phpbb_groups (
group_colour varchar(6) DEFAULT '' NOT NULL,
group_chgpass smallint(6) DEFAULT '0' NOT NULL,
group_description varchar(255) DEFAULT '' NOT NULL,
- PRIMARY KEY (group_id)
+ group_legend tinyint(1) DEFAULT '1' NOT NULL,
+ PRIMARY KEY (group_id),
+ KEY group_legend (group_legend)
);
# Table: 'phpbb_icons'
@@ -561,6 +563,7 @@ CREATE TABLE phpbb_styles_imageset (
imageset_name varchar(30) DEFAULT '' NOT NULL,
imageset_copyright varchar(50) DEFAULT '' NOT NULL,
imageset_path varchar(30) DEFAULT '' NOT NULL,
+ site_logo varchar(200) DEFAULT '' NOT NULL,
btn_post varchar(200) DEFAULT '' NOT NULL,
btn_post_pm varchar(200) DEFAULT '' NOT NULL,
btn_reply varchar(200) DEFAULT '' NOT NULL,