aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/firebird_basic.sql
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2003-03-22 15:48:46 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2003-03-22 15:48:46 +0000
commit8357b81a1ec2d0fb6d383966e7883ed9bc8c0d63 (patch)
treed98ea4b4f1b3459d6de8a7fc6ac519835583665c /phpBB/install/schemas/firebird_basic.sql
parent73ffe96e2edac38ef785d4f5a9cfe24798fe2cbe (diff)
downloadforums-8357b81a1ec2d0fb6d383966e7883ed9bc8c0d63.tar
forums-8357b81a1ec2d0fb6d383966e7883ed9bc8c0d63.tar.gz
forums-8357b81a1ec2d0fb6d383966e7883ed9bc8c0d63.tar.bz2
forums-8357b81a1ec2d0fb6d383966e7883ed9bc8c0d63.tar.xz
forums-8357b81a1ec2d0fb6d383966e7883ed9bc8c0d63.zip
initial attachment functionality... only posting related (add/delete/edit) and schema. Also added attachment switch to board settings admin.
git-svn-id: file:///svn/phpbb/trunk@3697 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/firebird_basic.sql')
-rw-r--r--phpBB/install/schemas/firebird_basic.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/install/schemas/firebird_basic.sql b/phpBB/install/schemas/firebird_basic.sql
index e6b2def9c2..82025c8a2b 100644
--- a/phpBB/install/schemas/firebird_basic.sql
+++ b/phpBB/install/schemas/firebird_basic.sql
@@ -20,6 +20,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_bbcode','1')
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_smilies','1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig','1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_namechange','0');
+INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_attachments','1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_topic_notify','1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_forum_notify','1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_local','0');
@@ -81,6 +82,10 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_server', '');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_base_dn', '');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_uid', '');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('lastread', '432000');
+INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_filesize', '262144');
+INSERT INTO phpbb_config (config_name, config_value) VALUES ('attachment_quota', '52428800');
+INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments', '3');
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_dir', 'files', 1);
INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_users', '0', 1);
INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_date', '0', 1);
INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_id', '2', 1);