django mysql创建表_Django MySQL错误创建表

bd96500e110b49cbb3cd949968f18be7.png

I've a similar problem as this ticket raised on Django forum. How do I solve this issue??

I also have a User model extended, as follow:-

class Profile(models.Model):

street_address = models.CharField(max_length=80, blank=True, null=True)

city = models.CharField(max_length=80, blank=True, null=True)

state = models.CharField(max_length=80, blank=True, null=True)

zip = models.CharField(max_length=30, blank=True, null=True)

country = models.CharField(max_length=50, blank=True, null=True)

phone = models.CharField(max_length=50, blank=True, null=True)

birth = models.DateField(blank=True, null=True)

photo = models.ImageField(upload_to='media')

user = models.OneToOneField(User,primary_key=True)

But I dont think the problem is with the model, because even if I remove the app containing the model from the INSTALLED_APPS list, and run the manage.py migrate command, it still throws the same errors, ie

django.db.utils.OperationalError: (1005, "Can't create table 'db.#sql-456_113' (errno: 150)")

Without including any of the apps, it works fine. Any lead will be really helpful.

解决方案

Check the storage engine of your db tables. As refered here old MySQL used MyISAM which is incompatible with actual InnoDB storage engine. so, if your db has different storage engines for different tables and you try to make a Foreign Key, you will probably find this error. At least, this was my case :)

hope this helps someone

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值