Database Table: auth_user

This table is one of six related tables:

  1. auth_group
  2. auth_group_permissions
  3. auth_permission
  4. auth_user
  5. auth_user_groups
  6. auth_user_user_permissions

which are user authentication tables defined by the Django web services framework. The interested reader is referred to the Django User Authentication documentation.

Keys:

  • id (Integer):

Columns:

  • password (String(128)):
  • last_login (Integer):
  • is_superuser (Boolean):
  • username (String(150)):
  • first_name (String(30)):
  • last_name (String(150)):
  • email (String(254)):
  • is_staff (Boolean):
  • is_active (Boolean):
  • date_joined (Integer):