mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-13 05:06:37 +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:
@ -498,3 +498,19 @@ CREATE TABLE phpbb_words (
|
|||||||
replacement varchar(100) NOT NULL,
|
replacement varchar(100) NOT NULL,
|
||||||
PRIMARY KEY (word_id)
|
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)
|
||||||
|
);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user