social_auth_nonce
Description
Table Definition
CREATE TABLE `social_auth_nonce` (
`id` int NOT NULL AUTO_INCREMENT,
`server_url` varchar(255) NOT NULL,
`timestamp` int NOT NULL,
`salt` varchar(65) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `social_auth_nonce_server_url_timestamp_salt_f6284463_uniq` (`server_url`,`timestamp`,`salt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
Columns
| Name | Type | Default | Nullable | Extra Definition | Children | Parents | Comment |
|---|---|---|---|---|---|---|---|
| id | int | false | auto_increment | ||||
| server_url | varchar(255) | false | |||||
| timestamp | int | false | |||||
| salt | varchar(65) | false |
Constraints
| Name | Type | Definition |
|---|---|---|
| PRIMARY | PRIMARY KEY | PRIMARY KEY (id) |
| social_auth_nonce_server_url_timestamp_salt_f6284463_uniq | UNIQUE | UNIQUE KEY social_auth_nonce_server_url_timestamp_salt_f6284463_uniq (server_url, timestamp, salt) |
Indexes
| Name | Definition |
|---|---|
| PRIMARY | PRIMARY KEY (id) USING BTREE |
| social_auth_nonce_server_url_timestamp_salt_f6284463_uniq | UNIQUE KEY social_auth_nonce_server_url_timestamp_salt_f6284463_uniq (server_url, timestamp, salt) USING BTREE |
Relations
Generated by tbls