diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2010-01-25 18:42:04 +0000 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2010-01-25 18:42:04 +0000 |
| commit | 5306a586b17d0c85d6a52dea994806bbb1891e50 (patch) | |
| tree | 00eecb8fce0942624a55bb5fba35e9f801aff436 /phpBB/install/database_update.php | |
| parent | bdd81806f20e237de7cb829cd80d1b5a099188c1 (diff) | |
| download | forums-5306a586b17d0c85d6a52dea994806bbb1891e50.tar forums-5306a586b17d0c85d6a52dea994806bbb1891e50.tar.gz forums-5306a586b17d0c85d6a52dea994806bbb1891e50.tar.bz2 forums-5306a586b17d0c85d6a52dea994806bbb1891e50.tar.xz forums-5306a586b17d0c85d6a52dea994806bbb1891e50.zip | |
Revert r9564, Fix #54445, Related to #44665.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10445 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/database_update.php')
| -rw-r--r-- | phpBB/install/database_update.php | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 21767c20da..31911b4a6c 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -885,12 +885,9 @@ function database_update_info() ), ), ), - // Changes from 3.0.6-RC1 to 3.0.6-RC2 - '3.0.6-RC1' => array( - 'drop_keys' => array( - LOG_TABLE => array('log_time'), - ), - ), + + // No changes from 3.0.6-RC1 to 3.0.6-RC2 + '3.0.6-RC1' => array(), // No changes from 3.0.6-RC2 to 3.0.6-RC3 '3.0.6-RC2' => array(), // No changes from 3.0.6-RC3 to 3.0.6-RC4 @@ -898,8 +895,12 @@ function database_update_info() // No changes from 3.0.6-RC4 to 3.0.6 '3.0.6-RC4' => array(), - // No changes from 3.0.6 to 3.0.7-RC1 - '3.0.6' => array(), + // Changes from 3.0.6 to 3.0.7-RC1 + '3.0.6' => array( + 'drop_keys' => array( + LOG_TABLE => array('log_time'), + ), + ), ); } |
