diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-10-03 21:01:36 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-10-03 21:01:36 +0200 |
commit | 68c197fd6012b5435a29a288113b957e7957de59 (patch) | |
tree | 6d4ed0af33be2c0ef7aeaf666e13949364fe6248 /phpBB/phpbb/db | |
parent | 1eed2f98c30210d02b8ca3bf5b167fae67dc64dd (diff) | |
parent | 3a443b56233c58df49d15861c1c4add996b7660b (diff) | |
download | forums-68c197fd6012b5435a29a288113b957e7957de59.tar forums-68c197fd6012b5435a29a288113b957e7957de59.tar.gz forums-68c197fd6012b5435a29a288113b957e7957de59.tar.bz2 forums-68c197fd6012b5435a29a288113b957e7957de59.tar.xz forums-68c197fd6012b5435a29a288113b957e7957de59.zip |
Merge pull request #5652 from marc1706/ticket/11327
[ticket/11327] Implement forgot password functionality via form
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v330/reset_password.php | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v330/reset_password.php b/phpBB/phpbb/db/migration/data/v330/reset_password.php new file mode 100644 index 0000000000..953d478ccc --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v330/reset_password.php @@ -0,0 +1,48 @@ +<?php +/** + * + * This file is part of the phpBB Forum Software package. + * + * @copyright (c) phpBB Limited <https://www.phpbb.com> + * @license GNU General Public License, version 2 (GPL-2.0) + * + * For full copyright and license information, please see + * the docs/CREDITS.txt file. + * + */ + +namespace phpbb\db\migration\data\v330; + +class reset_password extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return [ + '\phpbb\db\migration\data\v330\dev', + ]; + } + + public function update_schema() + { + return [ + 'add_columns' => [ + $this->table_prefix . 'users' => [ + 'reset_token' => ['VCHAR:64', '', 'after' => 'user_actkey'], + 'reset_token_expiration' => ['TIMESTAMP', 0, 'after' => 'reset_token'], + ], + ], + ]; + } + + public function revert_schema() + { + return [ + 'drop_columns' => [ + $this->table_prefix . 'users' => [ + 'reset_token', + 'reset_token_expiration', + ], + ], + ]; + } +} |