From 5bc5e4716cc7437941e9cdb6a2b15ed1f4f19b95 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Fri, 27 Sep 2013 16:58:06 +0200 Subject: [feature/passwords] More changes due to namespacing PHPBB3-11610 --- phpBB/phpbb/db/migration/data/310/passwords.php | 38 ---------------------- phpBB/phpbb/db/migration/data/v310/passwords.php | 40 ++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 38 deletions(-) delete mode 100644 phpBB/phpbb/db/migration/data/310/passwords.php create mode 100644 phpBB/phpbb/db/migration/data/v310/passwords.php (limited to 'phpBB/phpbb/db/migration/data') diff --git a/phpBB/phpbb/db/migration/data/310/passwords.php b/phpBB/phpbb/db/migration/data/310/passwords.php deleted file mode 100644 index 0611abb79d..0000000000 --- a/phpBB/phpbb/db/migration/data/310/passwords.php +++ /dev/null @@ -1,38 +0,0 @@ - array( - $this->table_prefix . 'users' => array( - 'user_password' => array('VCHAR:255', ''), - ), - ), - ); - } - - public function revert_schema() - { - return array( - 'change_columns' => array( - $this->table_prefix . 'users' => array( - 'user_password' => array('VCHAR:40', ''), - ), - ), - ); - } -} diff --git a/phpBB/phpbb/db/migration/data/v310/passwords.php b/phpBB/phpbb/db/migration/data/v310/passwords.php new file mode 100644 index 0000000000..c422f681ba --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v310/passwords.php @@ -0,0 +1,40 @@ + array( + $this->table_prefix . 'users' => array( + 'user_password' => array('VCHAR:255', ''), + ), + ), + ); + } + + public function revert_schema() + { + return array( + 'change_columns' => array( + $this->table_prefix . 'users' => array( + 'user_password' => array('VCHAR:40', ''), + ), + ), + ); + } +} -- cgit v1.2.1