Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/363.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python Django Cities Light,在postgresql中将字段更改为ForeignKey会引发错误_Python_Django_Database_Postgresql_Django Models - Fatal编程技术网

Python Django Cities Light,在postgresql中将字段更改为ForeignKey会引发错误

Python Django Cities Light,在postgresql中将字段更改为ForeignKey会引发错误,python,django,database,postgresql,django-models,Python,Django,Database,Postgresql,Django Models,我的目标是使用Django Cities Light并将我的模型与foreignkey链接到Django Cities Light的城市和乡村模型 运行python3 manage.py migrate时,出现以下错误: Operations to perform: Synchronize unmigrated apps: gis, crispy_forms, geoposition, messages, staticfiles Apply all migrations: ameniti

我的目标是使用Django Cities Light并将我的模型与foreignkey链接到Django Cities Light的城市和乡村模型

运行python3 manage.py migrate时,出现以下错误:

Operations to perform:
  Synchronize unmigrated apps: gis, crispy_forms, geoposition, messages, staticfiles
  Apply all migrations: amenities, sites, images, venues, sessions, contenttypes, admin, auth, newsletter, registration, easy_thumbnails, cities_light
Synchronizing apps without migrations:
  Creating tables...
    Running deferred SQL...
  Installing custom SQL...
Running migrations:
  Rendering model states... DONE
  Applying venues.0012_auto_20160514_2024...Traceback (most recent call last):
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/backends/utils.py", line 64, in execute
    return self.cursor.execute(sql, params)
psycopg2.ProgrammingError: column "venue_city_id" cannot be cast automatically to type integer
HINT:  Specify a USING expression to perform the conversion.


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "manage.py", line 10, in <module>
    execute_from_command_line(sys.argv)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/core/management/__init__.py", line 354, in execute_from_command_line
    utility.execute()
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/core/management/__init__.py", line 346, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/core/management/base.py", line 394, in run_from_argv
    self.execute(*args, **cmd_options)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/core/management/base.py", line 445, in execute
    output = self.handle(*args, **options)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/core/management/commands/migrate.py", line 222, in handle
    executor.migrate(targets, plan, fake=fake, fake_initial=fake_initial)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/migrations/executor.py", line 110, in migrate
    self.apply_migration(states[migration], migration, fake=fake, fake_initial=fake_initial)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/migrations/executor.py", line 148, in apply_migration
    state = migration.apply(state, schema_editor)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/migrations/migration.py", line 115, in apply
    operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/migrations/operations/fields.py", line 201, in database_forwards
    schema_editor.alter_field(from_model, from_field, to_field)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/backends/base/schema.py", line 484, in alter_field
    old_db_params, new_db_params, strict)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/backends/base/schema.py", line 636, in _alter_field
    params,
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/backends/base/schema.py", line 111, in execute
    cursor.execute(sql, params)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/backends/utils.py", line 79, in execute
    return super(CursorDebugWrapper, self).execute(sql, params)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/backends/utils.py", line 64, in execute
    return self.cursor.execute(sql, params)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/utils.py", line 98, in __exit__
    six.reraise(dj_exc_type, dj_exc_value, traceback)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/utils/six.py", line 685, in reraise
    raise value.with_traceback(tb)
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/backends/utils.py", line 64, in execute
    return self.cursor.execute(sql, params)
django.db.utils.ProgrammingError: column "venue_city_id" cannot be cast automatically to type integer
HINT:  Specify a USING expression to perform the conversion.
我的模型如下:

class Venue(models.Model):
    venue_owner = models.ForeignKey(User, null=True)
    venue_name = models.CharField(max_length=100)
    venue_address = models.CharField(max_length=250)
    venue_city = models.CharField(max_length=250)
    venue_zipcode = models.CharField(max_length=20, blank=True)
    venue_seated_capacity = models.PositiveIntegerField()
    venue_standing_capacity = models.PositiveIntegerField()
    venue_type = models.CharField(max_length=20, choices=VENUE_TYPES)
    venue_sqf = models.PositiveIntegerField(default=0)
    venue_description = models.TextField(blank=False, null=True)
    featurete = models.PositiveIntegerField(default=0)
    carousel = models.PositiveIntegerField(default=0)
    gallery = models.PositiveIntegerField(default=0)
    #map_activation is for activating the map for the venue
    map_activation = models.BooleanField(default=False)
    position = GeopositionField(blank=True)
INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.sites',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    #GEOdjango
    'django.contrib.gis',
    #Django cities Light
    'cities_light',
    #Custom Apps
    'venues',
    'images',
    'amenities',
    #Third party apps
    'registration',
    'crispy_forms',
    'easy_thumbnails',
    'geoposition',
)


CITIES_LIGHT_TRANSLATION_LANGUAGES = ['nl', 'en']
CITIES_LIGHT_INCLUDE_COUNTRIES = ['NL']
我的设置如下:

class Venue(models.Model):
    venue_owner = models.ForeignKey(User, null=True)
    venue_name = models.CharField(max_length=100)
    venue_address = models.CharField(max_length=250)
    venue_city = models.CharField(max_length=250)
    venue_zipcode = models.CharField(max_length=20, blank=True)
    venue_seated_capacity = models.PositiveIntegerField()
    venue_standing_capacity = models.PositiveIntegerField()
    venue_type = models.CharField(max_length=20, choices=VENUE_TYPES)
    venue_sqf = models.PositiveIntegerField(default=0)
    venue_description = models.TextField(blank=False, null=True)
    featurete = models.PositiveIntegerField(default=0)
    carousel = models.PositiveIntegerField(default=0)
    gallery = models.PositiveIntegerField(default=0)
    #map_activation is for activating the map for the venue
    map_activation = models.BooleanField(default=False)
    position = GeopositionField(blank=True)
INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.sites',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    #GEOdjango
    'django.contrib.gis',
    #Django cities Light
    'cities_light',
    #Custom Apps
    'venues',
    'images',
    'amenities',
    #Third party apps
    'registration',
    'crispy_forms',
    'easy_thumbnails',
    'geoposition',
)


CITIES_LIGHT_TRANSLATION_LANGUAGES = ['nl', 'en']
CITIES_LIGHT_INCLUDE_COUNTRIES = ['NL']
这导致了错误。将地点从查菲尔德改为外滩。我试着把模型改回去,但还是有同样的错误


如何修复此错误并创建与Django cities模型的连接?

假设此时的“地点城市”列包含与cities模型中主键对应的整数值。您仍然可以通过编辑0012_auto_20160514_2024迁移文件来执行迁移。先做

./manage.py sqlmigrate venues 0012 
仔细观察生成的SQl中与“场馆城市”列相对应的部分。现在需要编辑迁移文件,并用migrations.RunSQL替换默认生成的迁移。进入其中的查询本质上就是您在sqlmigration中找到的查询。只需使用venue\u city::integer将
添加到末尾

更新:根据更新后的答案,您将替换此部分

    migrations.AlterField(
        model_name='venue',
        name='venue_city',
        field=models.ForeignKey(to='cities_light.City', blank=True),
    ),
使用修改列的自定义SQL

更新2:由于您无法运行
sqlmigrate
,我将尝试向您展示该SQL应该是什么

migrations.RunSQL(''' ALTER TABLE venues_venue ALTER venue_city TYPE integer USING  venue_city::integer '''),

migrations.RunSQL(''' ALTER TABLE venues_venue ALTER venue_city DROP NOT NULL '''),

migrations.RunSQL(''' ALTER TABLE venues_venue ALTER venue_city RENAME COLUMN venue_city TO venue_city_id '''),

migrations.RunSQL(''' ALTER TABLE venues_venue ADD CONSTRAINT venues_venus_somefk FOREIGN KEY (venue_city_id) REFERENCES  cities_light (id) DEFERRABLE INITIALLY DEFERRED'''),

完整查询本质上就是sqlmigrate显示的内容。

python3 manage.py sqlmigrate ventions 0012-返回一个错误:python3:无法打开文件“sqlmigrate”:[Errno 2]没有这样的文件或目录我已将0012文件添加到问题中。您必须运行我在回答中提到的sqlmigrate才能获得正确的sql。如果遇到问题,请参阅sqlmigrateExcuse me的帮助部分。如果我错了,请运行:python3 manage.py sqlmigrate.0012不提供SQL。我的回答中包含了一个回溯,您之前运行的是迁移,堆栈跟踪就是为了迁移。这是sqlmigrate