django_content_type
Description
Table Definition
CREATE TABLE `django_content_type` (
`id` int NOT NULL AUTO_INCREMENT,
`app_label` varchar(100) NOT NULL,
`model` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `django_content_type_app_label_model_76bd3d3b_uniq` (`app_label`,`model`)
) ENGINE=InnoDB AUTO_INCREMENT=[Redacted by tbls] DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
Columns
Name | Type | Default | Nullable | Extra Definition | Children | Parents | Comment |
---|---|---|---|---|---|---|---|
id | int | false | auto_increment | auth_permission django_admin_log | |||
app_label | varchar(100) | false | |||||
model | varchar(100) | false |
Constraints
Name | Type | Definition |
---|---|---|
django_content_type_app_label_model_76bd3d3b_uniq | UNIQUE | UNIQUE KEY django_content_type_app_label_model_76bd3d3b_uniq (app_label, model) |
PRIMARY | PRIMARY KEY | PRIMARY KEY (id) |
Indexes
Name | Definition |
---|---|
PRIMARY | PRIMARY KEY (id) USING BTREE |
django_content_type_app_label_model_76bd3d3b_uniq | UNIQUE KEY django_content_type_app_label_model_76bd3d3b_uniq (app_label, model) USING BTREE |
Relations
Generated by tbls