django 用户管理相关的表
Django 用户管理相关的表:
create table django_content_type (
/*
内容类型表
*/
id int(11) not null auto_increment,
app_label varchar(100) not null,
model varchar(100) not null, primary key (id),
unique key uix_django_content_type_app_lable_model (app_label,model)
) -- select * from django_content_type;
-- +----+--------------+-------------+
-- | id | app_label | model |
-- +----+--------------+-------------+
-- | 1 | admin | logentry |
-- | 3 | auth | group |
-- | 2 | auth | permission |
-- | 4 | auth | user |
-- | 5 | contenttypes | contenttype |
-- | 6 | sessions | session |
-- +----+--------------+-------------+ create table auth_permission (
/*
权限表
*/
id int(11) not null auto_increment,
name varchar(255) not null,
content_type_id int(11) not null,
codename varchar(100) not null, primary key (id),
unique key uix__auth_permission_content_type_id_codename (content_type_id,codename),
constraint uix__auth_permission_content_type_id foreign key (content_type_id) references django_content_type (id)
) create table auth_user (
/*
用户
*/
id int(11) not null auto_increment,
password varchar(128) not null,
last_login datetime(6) DEFAULT NULL,
is_superuser tinyint(1) not null,
username varchar(150) not null,
first_name varchar(30) not null,
last_name varchar(150) not null,
email varchar(254) not null,
is_staff tinyint(1) not null,
is_active tinyint(1) not null,
date_joined datetime(6) not null, primary key (id),
unique key username (username)
) create table auth_group (
/*
用户组
*/
id int(11) not null auto_increment,
name varchar(80) not null, primary key (id),
unique key name (name)
) create table auth_user_groups (
/*
用户 + 组 关联关系表
*/
id int(11) not null auto_increment,
user_id int(11) not null,
group_id int(11) not null, primary key (id),
unique key uix__auth_user_groups_user_id_group_id (user_id,group_id),
key ix_auth_user_groups_group_id (group_id),
constraint fk_auth_user_groups_group_id foreign key (group_id) references auth_group (id),
constraint fk_auth_user_groups_user_id foreign key (user_id) references auth_user (id)
) create table auth_user_user_permissions (
/*
用户权限
*/
id int(11) not null auto_increment,
user_id int(11) not null,
permission_id int(11) not null, primary key (id),
unique key uix_auth_user_user_permissions_user_id_permission_id (user_id,permission_id),
key ix_auth_user_user_permissions_permission_id (permission_id),
constraint fk_auth_user_user_permissions_permission_id foreign key (permission_id) references auth_permission (id),
constraint fk_auth_user_user_permissions_user_id foreign key (user_id) references auth_user (id)
) create table auth_group_permissions (
/*
组权限
*/
id int(11) not null auto_increment,
group_id int(11) not null,
permission_id int(11) not null, primary key (id),
unique key uix_auth_group_permissions (group_id,permission_id),
key ix__auth_group_permissions_permission_id (permission_id), constraint fk__auth_group_permissions_auth_permission_id foreign key (permission_id) references auth_permission (id),
constraint fk__auth_group_permissions_auth_group_id foreign key (group_id) references auth_group (id)
) create table django_admin_log (
/*
日志表
*/
id int(11) not null auto_increment,
action_time datetime(6) not null,
object_id longtext,
object_repr varchar(200) not null,
action_flag smallint(5) unsigned not null,
change_message longtext not null,
content_type_id int(11) DEFAULT NULL,
user_id int(11) not null, primary key (id),
key ix_django_admin_log_content_type_id (content_type_id),
key ix_django_admin_log_user_id (user_id),
constraint fk_django_admin_log_content_type_id foreign key (content_type_id) references django_content_type (id),
constraint fk_django_admin_log_user_id foreign key (user_id) references auth_user (id)
) create table django_session (
/*
会话表
*/
session_key varchar(40) not null,
session_data longtext not null,
expire_date datetime(6) not null, primary key (session_key),
key ix_django_session_expire_date (expire_date)
)
django 用户管理相关的表的更多相关文章
- linux 学习7 用户管理相关文件 r
7.1.用户配置文件 7.2.用户管理相关文件 7.3.用户管理命令 7.4.用户组管理命令 删除用户userdel [root@localhost ~]# userdel [-r] 用户名 //一定 ...
- 用户信息文件/etc/passwd,影子文件/etc/shadow,组信息文件/etc/group,组密码文件/etc/gshadow,用户管理相关文件
/etc/passwd man 5 passwd查看配置文件信息 account:password:UID:GID:GECOS:directory:shell 帐号:密码:用户ID:组ID:一般的信息 ...
- mysql命令大全用户管理相关命令
1.登陆 mysql>mysql -uJDev -p 2.用户管理 mysql>use mysql; 3.查看有哪些登陆用户 mysql> select host,user, ...
- centos的用户管理相关命令所在的包
用户管理命令是指:useradd userdel groupadd groupdel 这些 这些命令出自一个叫 shadow-utils 的包. 对于配置文件 /etc/shadow ,则来自一个叫 ...
- django 用户管理系列:1 user
:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdow ...
- 6月21日 Django ORM那些相关操作(表关联、聚合查询和分组查询)
一.ForeignKey操作 正向查找 对象查找(跨表) 语法: 对象.关联字段.字段 示例: book_obj = models.Book.objects.first() # 第一本书对象 pr ...
- linux的用户管理相关配置文件
Linux的管理命令的本质不过是对配置文件/etc相关文件的修改罢了
- 【Python】解决Django Admin管理界面样式表(CSS Style)丢失问题
配置Django Admin,关于如何启用请参考Django官方文档<Activate the admin site>.但是我在配置过程中登录http://example.com/admi ...
- Linux用户和用户组管理 用户管理相关命令
用户添加命令 useradd 注意: 新添加的用户如果不设定密码是不能够登录系统的 命令格式: [root@localhost ~]#useradd [选项] 用户名 选项说明: 选项 选项说明 -u ...
随机推荐
- MAC LINUX 安装PYQT(事例)
MAC安装 1.安装命令:brew install pyqt Warning: Your Xcode () is outdated Please install Xcode 5.0. Warning: ...
- FILTER——JAVA
一.概念 Filter也称之为过滤器,它是Servlet技术中比较激动人心的技术,WEB开发人员通过Filter技术,对web服务器管理的所有web资源:例如Jsp, Servlet, 静态图片文件或 ...
- gradle 配置及设置本地仓库
安装Gradle 从官方网站下载安装包,解压到目录 设置环境变量 GRADLE_HOME=D:\gradle\gradle-3.4.1 PATH=;%GRADLE_HOME%\bin 设置本地仓库目录 ...
- golang之log rotate
操作系统: CentOS 6.9_x64 go语言版本: 1.8.3 问题描述 golang的log模块提供的有写日志功能,示例代码如下: /* golang log example E-Mail : ...
- JavaIO流原理之常用字节流和字符流详解以及Buffered高效的原理
转载请注明原文地址:http://www.cnblogs.com/ygj0930/p/5827509.html Java的流体系十分庞大,我们来看看体系图: 这么庞大的体系里面 ...
- sqlserver 表中记录生成insert,可以加条件,可以生成建表语句
sqlserver 表中记录生成insert,可以加条件,可以生成建表语句 create PROCEDURE [sp_getinsert] ( ) , --如果非默认架构,可以加上架构名 例如:sch ...
- emplace_back() 和 push_back 的区别(转)
在引入右值引用,转移构造函数,转移复制运算符之前,通常使用push_back()向容器中加入一个右值元素(临时对象)的时候,首先会调用构造函数构造这个临时对象,然后需要调用拷贝构造函数将这个临时对象放 ...
- V-rep学习笔记:Reflexxes Motion Library 3
路径规划 VS 轨迹规划 轨迹规划的目的是将输入的简单任务描述变为详细的运动轨迹描述.注意轨迹和路径的区别:Trajectory refers to a time history of positio ...
- 微信小程序,创业新选择
微信小程序,创业新选择 创业者们 总是站在时代的风口浪尖,他们踌躇满志无所畏惧,这大概就是梦想的力量.但是,如果没有把梦想拆解成没有可预期的目标和可执行的实现路径那么一切都只能叫做梦想. 小程序 张小 ...
- java动态代理技术
主要用来做方法的增强.让你能够在不改动源代码的情况下,增强一些方法,在方法运行前后做不论什么你想做的事情(甚至根本不去运行这种方法).由于在InvocationHandler的invoke方法中,你能 ...