mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-13 04:04:12 +02:00
[feature/oauth] Finalize schema changes
PHPBB3-11673
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) NOT NULL,
|
||||
oauth_token blob NOT NULL,
|
||||
KEY user_id (user_id),
|
||||
KEY provider (oauth_provider)
|
||||
);
|
||||
|
||||
|
||||
# Table: 'phpbb_oauth_accounts'
|
||||
CREATE TABLE phpbb_oauth_accounts (
|
||||
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
provider varbinary(255) 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