一个很有趣的个人博客,不信你来撩 fangzengye.com
https://zhidao.baidu.com/question/307680966.html
https://www.cnblogs.com/zhigu/p/9939396.html
https://www.cnblogs.com/elinejhz/p/10650839.html
解决 python No migrations to apply 无法生成表
显示所有数据库show databases
解决方案 第一步删除该app名字下的migrations文件(除了init文件外)。
第二步进入数据库删除对应数据库里的django_migraions表
进入某个数据库use 数据库名
展示表show tables
删除某个表的内容delete from 表名
select * from django_session;
删除指定数据库drop database 数据库名;
创建数据库CREATE DATABASE 数据库名;