Django - 遗留MySQL数据迁移错误

时间:2015-05-04 20:05:56

标签: python mysql django

我有很多关于外键定义的问题,我有inspectdb'到我的models.py文件中。

我有一组遗留表,我想将它们合并到我的Django应用程序中,因此我运行了python manage.py inspectdb > models.py

我想在我的应用中使用7张GPS表。看看其中的两个将充分描述我遇到的问题。

MySQL创建表语句:

CREATE TABLE `gps` (
  `longitude_dir` char(1) DEFAULT NULL,
  `longitude` decimal(8,5) DEFAULT NULL,
  `latitude` decimal(7,5) DEFAULT NULL,
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `host_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `latitude_dir` char(1) DEFAULT NULL,
  `host` varchar(24) NOT NULL,
  `altitude_units` char(1) DEFAULT NULL,
  `gps_time` datetime DEFAULT NULL,
  `raw` blob NOT NULL,
  `clean` bit(1) DEFAULT NULL,
  `data_valid` bit(1) DEFAULT NULL,
  `modem` varchar(15) NOT NULL,
  `altitude` decimal(7,2) DEFAULT NULL,
  PRIMARY KEY (`id`,`host`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1

CREATE TABLE `gps_zda` (
  `local_zone_minutes` tinyint(4) DEFAULT NULL,
  `host` varchar(24) NOT NULL,
  `year` tinyint(4) DEFAULT NULL,
  `day` tinyint(4) DEFAULT NULL,
  `month` tinyint(4) DEFAULT NULL,
  `local_zone` tinyint(4) DEFAULT NULL,
  `gps_id` int(10) unsigned NOT NULL,
  `timestamp` time DEFAULT NULL,
  KEY `gps_fk_zda` (`gps_id`,`host`),
  CONSTRAINT `gps_fk_zda` FOREIGN KEY (`gps_id`, `host`) REFERENCES `gps` (`id`, `host`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1

以下是模型的子集

from __future__ import unicode_literals

from django.db import models


class Gps(models.Model):
    longitude_dir = models.CharField(max_length=1, blank=True, null=True)
    longitude = models.DecimalField(max_digits=8, decimal_places=5, blank=True, null=True)
    latitude = models.DecimalField(max_digits=7, decimal_places=5, blank=True, null=True)
    id = models.AutoField()
    host_time = models.DateTimeField()
    latitude_dir = models.CharField(max_length=1, blank=True, null=True)
    host = models.CharField(max_length=24)
    altitude_units = models.CharField(max_length=1, blank=True, null=True)
    gps_time = models.DateTimeField(blank=True, null=True)
    raw = models.TextField()
    clean = models.TextField(blank=True, null=True)  # This field type is a guess.
    data_valid = models.TextField(blank=True, null=True)  # This field type is a guess.
    modem = models.CharField(max_length=15)
    altitude = models.DecimalField(max_digits=7, decimal_places=2, blank=True, null=True)

    class Meta:
        managed = False
        db_table = 'gps'
        unique_together = (('id', 'host'),)

class GpsZda(models.Model):
    local_zone_minutes = models.IntegerField(blank=True, null=True)
    host = models.ForeignKey(Gps, db_column='host')
    year = models.IntegerField(blank=True, null=True)
    day = models.IntegerField(blank=True, null=True)
    month = models.IntegerField(blank=True, null=True)
    local_zone = models.IntegerField(blank=True, null=True)
    gps = models.ForeignKey(Gps)
    timestamp = models.TimeField(blank=True, null=True)

    class Meta:
        managed = False
        db_table = 'gps_zda'

1。 因此,在尝试python manage.py makemigrations时遇到的第一个问题是(gps.id, gps.host)未正确定义为主键。事实上似乎很多禁令都被忽略了。我首先收到错误,说gps.id被定义了两次。

更改

id = models.Autofield()
...
host = models.CharField(max_length=24)

id = models.Autofield(primary_key=True)
...
host = models.CharField(primary_key=True, max_length=24)

让django知道不要创建它自己的id字段。我仍然不确定它是否正确处理共享密钥。

2。 第二个问题是尝试运行makemigrations,因为gps_zda表有一个共享的,唯一的外键。 Django抱怨它不知道第二个外键的名称。

在其中一个外键上添加related_name似乎可以阻止投诉。

我改变了

host = models.ForeignKey(Gps, db_column='host')

host = models.ForeignKey(Gps, db_column='host', related_name='gps_zda_host_fk')

我再次不确定这是否正确处理共享外键。

3。 为了进行一些测试,我决定将模型添加到admin.py并查看字段是否正确填充。

这导致发现更多问题。

问题3.当我打开gps object时,我看到位字段(gps.clean,gps.data_valid)已转换为TextFields。我只想将TextField更改为NullBooleanField,尝试快速解决这些问题。现在在管理页面上,我看到一个适当的下拉选项:unknown,yes,no。不幸的是,现有的比特值为1被解析为未知。

我不确定如何解决这个问题,尝试更改数据库结构会有问题。

4。 再一次在管理员中,我无法正确加载gps_zda对象。起初我得到一个错误,抱怨一个不存在的gps_zda.id列。我通过改变

来解决这个问题
host = models.ForeignKey(Gps, db_column='host', related_name='gps_zda_host_fk')
...
gps = models.ForeignKey(Gps)

host = models.ForeignKey(Gps, primary_key=True, db_column='host', related_name='gps_zda_host_fk')
...
gps = models.ForeignKey(Gps, primary_key=True)

让Django知道不要寻找gps_zda.id字段。

我还将'unique_together =(('gps','host'))添加到Meta for GpsZda。

但我仍然无法通过管理页面查看gps_zda数据。我收到以下错误gps zda object with primary key u'Arthur' does not exist.其中Arthur是有效的gps.host值。

当我开始关注Django时,我认为这会很有趣。没那么多。我真的质疑将任何现有数据库移动到Django项目是否可行。

以下是我目前的型号。关于如何让他们更好地使用我的表格的任何建议都会受到欢迎。

class Gps(models.Model):
    longitude_dir = models.CharField(max_length=1, blank=True, null=True)
    longitude = models.DecimalField(max_digits=8, decimal_places=5, blank=True, null=True)
    latitude = models.DecimalField(max_digits=7, decimal_places=5, blank=True, null=True)
    id = models.AutoField(primary_key=True)
    host_time = models.DateTimeField(primary_key=True)
    latitude_dir = models.CharField(max_length=1, blank=True, null=True)
    host = models.CharField(primary_key=True, max_length=24)
    altitude_units = models.CharField(max_length=1, blank=True, null=True)
    gps_time = models.DateTimeField(blank=True, null=True)
    raw = models.TextField()
    clean = models.NullBooleanField(null=True)  # This field type is a guess.
    data_valid = models.NullBooleanField(null=True)  # This field type is a guess.
    modem = models.CharField(max_length=15)
    altitude = models.DecimalField(max_digits=7, decimal_places=2, blank=True, null=True)

    class Meta:
        managed = False
        db_table = 'gps'
        unique_together = (('id', 'host'),)

class GpsZda(models.Model):
    local_zone_minutes = models.IntegerField(blank=True, null=True)
    host = models.ForeignKey(Gps, db_column='host', related_name='gps_zda_host_fk')
    year = models.IntegerField(blank=True, null=True)
    day = models.IntegerField(blank=True, null=True)
    month = models.IntegerField(blank=True, null=True)
    local_zone = models.IntegerField(blank=True, null=True)
    gps = models.ForeignKey(Gps, primary_key=True, unique=True)
    timestamp = models.TimeField(blank=True, null=True)

    class Meta:
        managed = False
        db_table = 'gps_zda'
        unique_together = (('gps', 'host'),)

1 个答案:

答案 0 :(得分:1)

Django目前不支持表中的复合主键。 (参见wiki page,缺少model meta options,这是定义的地方。)

最好的选择可能是在no software with cfbundleidentifier of '%1$@' exists表中添加另一个标识列,因此Django可以正常使用它。

关于其他问题,最好是为他们研究和发布单独的问题。