反向工程,将脚本导入mysql工作台后没有关系

反向工程,将脚本导入mysql工作台后没有关系,mysql,foreign-keys,stub,relationships,Mysql,Foreign Keys,Stub,Relationships,由于某些原因,我无法再打开我的模型,它已损坏,因此我尝试从MySQL导入以创建一个新的模型进行操作,但在导入时总是出现以下错误: WARNING: Table `macrotelecom_django`.`perfil` not found. Stub was created. WARNING: Table `macrotelecom_django`.`Agentes` : Foreign key `fk_Agentes_Perfil1` : Referred column `macro

由于某些原因,我无法再打开我的模型,它已损坏,因此我尝试从MySQL导入以创建一个新的模型进行操作,但在导入时总是出现以下错误:

WARNING: Table `macrotelecom_django`.`perfil` not found. Stub was created.
WARNING: Table `macrotelecom_django`.`Agentes` : Foreign key `fk_Agentes_Perfil1` :     Referred column `macrotelecom_django`.`perfil`.`idPerfil` not found. Stub was created.
WARNING: Table `macrotelecom_django`.`usuariologin` not found. Stub was created.
WARNING: Table `macrotelecom_django`.`Agentes` : Foreign key `fk_Agentes_UsuarioLogin1` :   Referred column `macrotelecom_django`.`usuariologin`.`idUsuarioLogin` not found. Stub was created.
WARNING: Table `macrotelecom_django`.`clientes` not found. Stub was created.
WARNING: Table `macrotelecom_django`.`Albaran` : Foreign key `fk_Clientes_has_Productos_Clientes1` : Referred column `macrotelecom_django`.`clientes`.`idCliente` not found. Stub was created. 
WARNING: Table `macrotelecom_django`.`productos` not found. Stub was created.
WARNING: Table `macrotelecom_django`.`Albaran` : Foreign key `fk_Clientes_has_Productos_Productos1` : Referred column 
...

由于某些原因,它无法正确导入外键,当creates总是在约束之前实现时总是说“table not found”,这可能是什么?

正如MySQL错误报告中所报告的,这应该是一个区分大小写的问题

工作台可能会检查
lower\u case\u table\u名称
开始反向工程前的可变值,并采用
SqlIdentifiersCS
根据需要,但这可能会导致 模型中的套管。例如,使用了几个模式 从使用不同值的不同DBMS进行反向工程
小写字母表名称
。所以用户必须显式地设置
SqlIdentifiersCS
参数,并应用相同的规则集 每一次


谢谢我在mac os x上使用xampp,但我无法修复较低等级的表名,所以我将表名(感谢上帝,我的表名很少…)改为小写,我知道为了将来,再次感谢并原谅我延迟回复!