diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2012-09-28 16:17:21 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2012-09-28 16:17:21 +0200 |
| commit | dc2835af785c6bf0209d91791f27a931fb334a5b (patch) | |
| tree | f3a66315af9c84f7f0e3239289f6bcd93012ab5e /phpBB/develop | |
| parent | 8b2181eb851081a103802764517f7189ba8fc114 (diff) | |
| download | forums-dc2835af785c6bf0209d91791f27a931fb334a5b.tar forums-dc2835af785c6bf0209d91791f27a931fb334a5b.tar.gz forums-dc2835af785c6bf0209d91791f27a931fb334a5b.tar.bz2 forums-dc2835af785c6bf0209d91791f27a931fb334a5b.tar.xz forums-dc2835af785c6bf0209d91791f27a931fb334a5b.zip | |
[feature/soft-delete] Add columns for soft delete details
PHPBB3-9657
Diffstat (limited to 'phpBB/develop')
| -rw-r--r-- | phpBB/develop/create_schema_files.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php index 6ef73266ba..c011dc91bb 100644 --- a/phpBB/develop/create_schema_files.php +++ b/phpBB/develop/create_schema_files.php @@ -1350,6 +1350,9 @@ function get_schema_struct() 'post_edit_user' => array('UINT', 0), 'post_edit_count' => array('USINT', 0), 'post_edit_locked' => array('BOOL', 0), + 'post_delete_time' => array('TIMESTAMP', 0), + 'post_delete_reason' => array('STEXT_UNI', ''), + 'post_delete_user' => array('UINT', 0), ), 'PRIMARY_KEY' => 'post_id', 'KEYS' => array( @@ -1703,6 +1706,9 @@ function get_schema_struct() 'poll_max_options' => array('TINT:4', 1), 'poll_last_vote' => array('TIMESTAMP', 0), 'poll_vote_change' => array('BOOL', 0), + 'topic_delete_time' => array('TIMESTAMP', 0), + 'topic_delete_reason' => array('STEXT_UNI', ''), + 'topic_delete_user' => array('UINT', 0), ), 'PRIMARY_KEY' => 'topic_id', 'KEYS' => array( |
