auth_group

Description

Table Definition
CREATE TABLE `auth_group` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(150) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci

Columns

NameTypeDefaultNullableExtra DefinitionChildrenParentsComment
idintfalseauto_incrementauth_group_permissions auth_user_groups
namevarchar(150)false

Constraints

NameTypeDefinition
nameUNIQUEUNIQUE KEY name (name)
PRIMARYPRIMARY KEYPRIMARY KEY (id)

Indexes

NameDefinition
PRIMARYPRIMARY KEY (id) USING BTREE
nameUNIQUE KEY name (name) USING BTREE

Relations

er


Generated by tbls