aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db
diff options
context:
space:
mode:
authoruid42062 <uid42062@users.sourceforge.net>2001-07-04 22:38:13 +0000
committeruid42062 <uid42062@users.sourceforge.net>2001-07-04 22:38:13 +0000
commitda911fcfdd09a08e53f9ca7adc224a14903bf57c (patch)
tree796161f8f19321c0aa40bcbc713fabd8011aa3d6 /phpBB/db
parent8237d4d8036894ed334615f837ad39a7366e55ec (diff)
downloadforums-da911fcfdd09a08e53f9ca7adc224a14903bf57c.tar
forums-da911fcfdd09a08e53f9ca7adc224a14903bf57c.tar.gz
forums-da911fcfdd09a08e53f9ca7adc224a14903bf57c.tar.bz2
forums-da911fcfdd09a08e53f9ca7adc224a14903bf57c.tar.xz
forums-da911fcfdd09a08e53f9ca7adc224a14903bf57c.zip
Things that should have commited earlier but apparently did not
git-svn-id: file:///svn/phpbb/trunk@556 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db')
-rw-r--r--phpBB/db/mysql_schema.sql2
-rw-r--r--phpBB/db/postgres_schema.sql2
2 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql
index d49421ad5b..5defa9b9f3 100644
--- a/phpBB/db/mysql_schema.sql
+++ b/phpBB/db/mysql_schema.sql
@@ -105,6 +105,8 @@ CREATE TABLE phpbb_config (
hot_threshold int(10),
email_sig varchar(255),
email_from varchar(100),
+ smtp_delivery smallint(1) DEFAULT '0' NOT NULL,
+ smtp_host varchar(50),
require_activation tinyint(1) DEFAULT '0' NOT NULL,
flood_interval int(4) NOT NULL,
avatar_filesize int(11) DEFAULT '6144' NOT NULL,
diff --git a/phpBB/db/postgres_schema.sql b/phpBB/db/postgres_schema.sql
index 1df9c6ea6c..1e5813bdf1 100644
--- a/phpBB/db/postgres_schema.sql
+++ b/phpBB/db/postgres_schema.sql
@@ -100,6 +100,8 @@ CREATE TABLE phpbb_config (
hot_threshold int2 NOT NULL,
email_sig varchar(255) NOT NULL,
email_from varchar(100) NOT NULL,
+ smtp_delivery int2 DEFAULT '0' NOT NULL,
+ smtp_host varchar(50),
require_activation int2 DEFAULT '0' NOT NULL,
default_theme int4 NOT NULL,
default_dateformat varchar(20) NOT NULL,