diff options
author | the_systech <the_systech@users.sourceforge.net> | 2001-06-12 15:11:40 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2001-06-12 15:11:40 +0000 |
commit | c08decbf1a3ca5ac6584706d261b384c6a8826b4 (patch) | |
tree | 73b4b549d5e5bc20fcddb7af5b95be25398eb02e /phpBB/db | |
parent | 81e9d7a7ee1023a4557e5afae9f667e0e61971b6 (diff) | |
download | forums-c08decbf1a3ca5ac6584706d261b384c6a8826b4.tar forums-c08decbf1a3ca5ac6584706d261b384c6a8826b4.tar.gz forums-c08decbf1a3ca5ac6584706d261b384c6a8826b4.tar.bz2 forums-c08decbf1a3ca5ac6584706d261b384c6a8826b4.tar.xz forums-c08decbf1a3ca5ac6584706d261b384c6a8826b4.zip |
Added Table def for auto_prune
git-svn-id: file:///svn/phpbb/trunk@480 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db')
-rw-r--r-- | phpBB/db/mysql_schema.sql | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql index 00cc66caa9..26a28e1944 100644 --- a/phpBB/db/mysql_schema.sql +++ b/phpBB/db/mysql_schema.sql @@ -498,3 +498,19 @@ CREATE TABLE phpbb_words ( replacement varchar(100) NOT NULL, PRIMARY KEY (word_id) ); + +# -------------------------------------------------------- +# +# Table structure for table 'phpbb_auto_prune' +# +DROP TABLE IF EXISTS phpbb_auto_prune; + +CREATE TABLE phpbb_auto_prune ( + prune_id int(10) NOT NULL auto_increment, + forum_id int(11) NOT NULL, + prune_days int(3) NOT NULL, + last_pruned int(11), + admin_id int(11) NOT NULL, + PRIMARY KEY (prune_id) +); + |