social_auth_association

Description

Table Definition
CREATE TABLE `social_auth_association` (
  `id` int NOT NULL AUTO_INCREMENT,
  `server_url` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `secret` varchar(255) NOT NULL,
  `issued` int NOT NULL,
  `lifetime` int NOT NULL,
  `assoc_type` varchar(64) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `social_auth_association_server_url_handle_078befa2_uniq` (`server_url`,`handle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci

Columns

NameTypeDefaultNullableExtra DefinitionChildrenParentsComment
idintfalseauto_increment
server_urlvarchar(255)false
handlevarchar(255)false
secretvarchar(255)false
issuedintfalse
lifetimeintfalse
assoc_typevarchar(64)false

Constraints

NameTypeDefinition
PRIMARYPRIMARY KEYPRIMARY KEY (id)
social_auth_association_server_url_handle_078befa2_uniqUNIQUEUNIQUE KEY social_auth_association_server_url_handle_078befa2_uniq (server_url, handle)

Indexes

NameDefinition
PRIMARYPRIMARY KEY (id) USING BTREE
social_auth_association_server_url_handle_078befa2_uniqUNIQUE KEY social_auth_association_server_url_handle_078befa2_uniq (server_url, handle) USING BTREE

Relations

er


Generated by tbls