1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-12 20:56:40 +02:00

Added Table def for auto_prune

git-svn-id: file:///svn/phpbb/trunk@480 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
the_systech
2001-06-12 15:11:40 +00:00
parent 81e9d7a7ee
commit c08decbf1a

View File

@ -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)
);