摘要:
用户管理 # 创建用户 create user '用户名'@'IP地址' identified by '密码'; create user 'steven'@localhost identified by '123456'; 删除用户 drop user '用户名'@'IP地址'; drop user 阅读全文
摘要:
Python 总目录链接 解决 python No migrations to apply 无法生成表 1、删除app目录下的migrations文件。 2、删除django_migrations表下关于app的所有数据。 delete from django_migrations where ap 阅读全文