Django 用户管理相关的表: create table django_content_type ( /* 内容类型表 */ id ) not null auto_increment, app_label ) not null, model ) not null, primary key (id), unique key uix_django_content_type_app_lable_model (app_label,model) ) -- select * from django_con…