diff options
Diffstat (limited to 'phpBB/install/schemas/mysql_41_schema.sql')
| -rw-r--r-- | phpBB/install/schemas/mysql_41_schema.sql | 20 | 
1 files changed, 20 insertions, 0 deletions
diff --git a/phpBB/install/schemas/mysql_41_schema.sql b/phpBB/install/schemas/mysql_41_schema.sql index 7b7be3c462..d3ed1ee15e 100644 --- a/phpBB/install/schemas/mysql_41_schema.sql +++ b/phpBB/install/schemas/mysql_41_schema.sql @@ -90,6 +90,26 @@ CREATE TABLE phpbb_acl_users (  ) CHARACTER SET `utf8` COLLATE `utf8_bin`; +# Table: 'phpbb_oauth_tokens' +CREATE TABLE phpbb_oauth_tokens ( +	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, +	session_id char(32) DEFAULT '' NOT NULL, +	provider varchar(255) DEFAULT '' NOT NULL, +	oauth_token mediumtext NOT NULL, +	KEY user_id (user_id), +	KEY provider (provider) +) CHARACTER SET `utf8` COLLATE `utf8_bin`; + + +# Table: 'phpbb_oauth_accounts' +CREATE TABLE phpbb_oauth_accounts ( +	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, +	provider varchar(255) DEFAULT '' NOT NULL, +	oauth_provider_id text NOT NULL, +	PRIMARY KEY (user_id, provider) +) CHARACTER SET `utf8` COLLATE `utf8_bin`; + +  # Table: 'phpbb_banlist'  CREATE TABLE phpbb_banlist (  	ban_id mediumint(8) UNSIGNED NOT NULL auto_increment,  | 
