Django和Pipelinedb:编程错误:列<database_name> .location_id不存在

时间:2018-09-01 13:32:01

标签: django postgresql pipelinedb

我正在使用Django和postgresdb进行项目,并且使用pipelinedb传入流数据。同步脚本正在运行。一切都已被Docker化。

数据在测试服务器上每60秒更新一次。

我将此字段添加到了模型中

location = models.ForeignKey('Location', related_name='assigned_sensor', on_delete=models.CASCADE, null=True)

作为参考,以下是“天气”和“位置”模型:

class WeatherStatsMrel(models.Model):
    id = models.BigIntegerField(db_column='$pk', primary_key=True)
    loc = models.CharField(max_length=3, null=True)
    dat = models.DateField(blank=True, null=True, editable=True)
    tim = models.TimeField(blank=True, null=True, editable=False)
    aws = models.FloatField(blank=True, null=True, editable=False)
    awd = models.TextField(blank=True, null=True, editable=False)
    mws = models.FloatField(blank=True, null=True,editable=False)
    mwd = models.TextField(blank=True, null=True,editable=False)
    tmp = models.FloatField(blank=True, null=True,editable=False)
    hum = models.FloatField(blank=True, null=True,editable=False)
    r10 = models.FloatField(blank=True, null=True,editable=False)
    r60 = models.FloatField(blank=True, null=True,editable=False)
    rda = models.FloatField(blank=True, null=True,editable=False)
    rcu = models.TextField(blank=True, null=True,editable=False)
    rad = models.TextField(blank=True, null=True,editable=False)
    sun = models.TextField(blank=True, null=True,editable=False)
    location = models.ForeignKey('Location', related_name='assigned_sensor', on_delete=models.CASCADE, null=True)

    class Meta:
        db_table = 'weather_stats_mrel'


    def __unicode__(self):
        return str({self.loc}, {self.dat}, {self.tim}, {self.aws}, {self.awd}, {self.mws}, {self.mwd}, {self.tmp}, {self.hum}, {self.r10}, {self.r60}, {self.rda}, {self.rcu}, {self.rad}, {self.sun})    

class Location(models.Model):
    id = models.AutoField(primary_key=True)
    abbreviated_name = models.CharField(max_length=3)
    full_name = models.CharField(max_length=25)

    def __str__(self):
        return self.abbreviated_name

启动服务器时,一切都很好。通过管理页面(Django的默认管理页面),我可以通过 attatt 导航到weather_stats_mrel页面,以查看传入的数据。

一旦Pipelindb更新了表,但是,当我尝试查看页面时出现此错误:

ProgrammingError at /admin/test_sensor_app/weatherstatsmrel/
column weather_stats_mrel.location_id does not exist
LINE 1: ...er_stats_mrel"."rad", "weather_stats_mrel"."sun", "weather_s...
                                                             ^
Request Method: GET
Request URL:    http://localhost:8000/admin/test_sensor_app/weatherstatsmrel/
Django Version: 2.1.1
Exception Type: ProgrammingError
Exception Value:    
column weather_stats_mrel.location_id does not exist
LINE 1: ...er_stats_mrel"."rad", "weather_stats_mrel"."sun", "weather_s...
                                                             ^

据我了解,Django应该自动添加此字段,对吗?还是我现在需要手动添加此表?我将其放在模型中的什么位置?

在使用ForeignKeys之前,我从来没有遇到过这个问题,但是再一次,这是我第一次使用在Django甚至没有接触之前就预先生成的表。

是否有解决此问题的方法?以前有没有人碰到过这个?

1 个答案:

答案 0 :(得分:0)

您似乎拥有一个名为weather_stats的连续视图。无法将列添加到现有的连续视图中,因此除非您在连续视图的定义中包括location_id,否则该列将不存在。