mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 19:38:53 +00: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:
parent
81e9d7a7ee
commit
c08decbf1a
1 changed files with 16 additions and 0 deletions
|
@ -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)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue