mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
Merge branch 'develop' of https://github.com/phpbb/phpbb3 into feature/passwords
Conflicts: phpBB/develop/create_schema_files.php
This commit is contained in:
@@ -90,6 +90,26 @@ CREATE TABLE phpbb_acl_users (
|
||||
);
|
||||
|
||||
|
||||
# Table: 'phpbb_oauth_tokens'
|
||||
CREATE TABLE phpbb_oauth_tokens (
|
||||
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
session_id binary(32) DEFAULT '' NOT NULL,
|
||||
provider varbinary(255) DEFAULT '' NOT NULL,
|
||||
oauth_token mediumblob NOT NULL,
|
||||
KEY user_id (user_id),
|
||||
KEY provider (provider)
|
||||
);
|
||||
|
||||
|
||||
# Table: 'phpbb_oauth_accounts'
|
||||
CREATE TABLE phpbb_oauth_accounts (
|
||||
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
provider varbinary(255) DEFAULT '' NOT NULL,
|
||||
oauth_provider_id blob NOT NULL,
|
||||
PRIMARY KEY (user_id, provider)
|
||||
);
|
||||
|
||||
|
||||
# Table: 'phpbb_banlist'
|
||||
CREATE TABLE phpbb_banlist (
|
||||
ban_id mediumint(8) UNSIGNED NOT NULL auto_increment,
|
||||
|
Reference in New Issue
Block a user