aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-09-27 16:58:06 +0200
committerMarc Alexander <admin@m-a-styles.de>2013-09-27 16:58:06 +0200
commit5bc5e4716cc7437941e9cdb6a2b15ed1f4f19b95 (patch)
tree4812304e01f8bf9cdcbe7da0b34fcf98829a6cc7 /phpBB/phpbb/db
parent3f63b9b470b2848abdd6288a45ca56331a3bb77c (diff)
downloadforums-5bc5e4716cc7437941e9cdb6a2b15ed1f4f19b95.tar
forums-5bc5e4716cc7437941e9cdb6a2b15ed1f4f19b95.tar.gz
forums-5bc5e4716cc7437941e9cdb6a2b15ed1f4f19b95.tar.bz2
forums-5bc5e4716cc7437941e9cdb6a2b15ed1f4f19b95.tar.xz
forums-5bc5e4716cc7437941e9cdb6a2b15ed1f4f19b95.zip
[feature/passwords] More changes due to namespacing
PHPBB3-11610
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/passwords.php (renamed from phpBB/phpbb/db/migration/data/310/passwords.php)6
1 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/phpbb/db/migration/data/310/passwords.php b/phpBB/phpbb/db/migration/data/v310/passwords.php
index 0611abb79d..c422f681ba 100644
--- a/phpBB/phpbb/db/migration/data/310/passwords.php
+++ b/phpBB/phpbb/db/migration/data/v310/passwords.php
@@ -7,11 +7,13 @@
*
*/
-class phpbb_db_migration_data_310_passwords extends phpbb_db_migration
+namespace phpbb\db\migration\data\v310;
+
+class passwords extends \phpbb\db\migration\migration
{
static public function depends_on()
{
- return array('phpbb_db_migration_data_30x_3_0_11');
+ return array('\phpbb\db\migration\data\v30x\release_3_0_11');
}
public function update_schema()