diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2018-07-26 16:42:33 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2018-07-30 11:37:37 +0200 |
commit | 8276b3d33732d120dc2556c917816c8407f9787a (patch) | |
tree | 9b3bff69b381d013b8157eca8ce85d38234f6095 /phpBB/phpbb/db | |
parent | c72d4437382b5d01a51c157a64df49778a86e5b6 (diff) | |
download | forums-8276b3d33732d120dc2556c917816c8407f9787a.tar forums-8276b3d33732d120dc2556c917816c8407f9787a.tar.gz forums-8276b3d33732d120dc2556c917816c8407f9787a.tar.bz2 forums-8276b3d33732d120dc2556c917816c8407f9787a.tar.xz forums-8276b3d33732d120dc2556c917816c8407f9787a.zip |
[ticket/11847] Add depends_on() to auth_provider_oauth
PHPBB3-11847
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/auth_provider_oauth.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/auth_provider_oauth.php b/phpBB/phpbb/db/migration/data/v310/auth_provider_oauth.php index 508a31fba9..d41041af49 100644 --- a/phpBB/phpbb/db/migration/data/v310/auth_provider_oauth.php +++ b/phpBB/phpbb/db/migration/data/v310/auth_provider_oauth.php @@ -20,6 +20,11 @@ class auth_provider_oauth extends \phpbb\db\migration\migration return $this->db_tools->sql_table_exists($this->table_prefix . 'auth_provider_oauth'); } + static public function depends_on() + { + return array('\phpbb\db\migration\data\v30x\release_3_0_0'); + } + public function update_schema() { return array( |