2017-04-18 16 views
0

私はHeroku内のdjangoアプリケーションで新しいpostgressql dbを作成しました。しかし、私が移行を実行するたびに、私は理解していないというエラーが出ます。Djangoとpostgresの移行エラー

エラー:

Applying argent.0043_auto_20170322_1629...Traceback (most recent call last): 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/backends/utils.py", line 65, in execute 
    return self.cursor.execute(sql, params) 
psycopg2.ProgrammingError: cannot cast type date to integer 
LINE 1: ...LTER COLUMN "date_id" TYPE integer USING "date_id"::integer,... 

Iを除去し、無駄に、私が持っている唯一の日付フィールドを追加しました。私はまだ私のモデルの日付フィールドがあるかどうか、同じエラーを取得します。どんな洞察も高く評価されるだろう。

models.py

class Entry(models.Model): 
    date = models.DateField(blank=True, null=True,) 
    euros = models.CharField(max_length=500, blank=True, null=True) 
    comments = models.CharField(max_length=900, blank=True, null=True) 
    euros_sum = models.DecimalField(max_digits=6, decimal_places=2, blank=True, null=True) 
    xrate = models.DecimalField(max_digits=6, decimal_places=2, blank=True, null=True) 
    dollars_sum = models.DecimalField(max_digits=6, decimal_places=2, blank=True, null=True) 
    daily_savings_dollars = models.DecimalField(max_digits=6, decimal_places=2, blank=True, null=True) 
    daily_savings_display = models.DecimalField(max_digits=6, decimal_places=2, blank=True, null=True) 

    def get_absolute_url(self): 
     return reverse('argent:detail', kwargs={'pk': self.pk}) 

    def item_date(self): 
     row_title = self.date 
     return row_title 

    class Meta: 

     ordering = ['date'] 

トレースバック:

Traceback (most recent call last): 
    File "manage.py", line 22, in <module> 
    execute_from_command_line(sys.argv) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/__init__.py", line 363, in execute_from_command_line 
    utility.execute() 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/__init__.py", line 355, in execute 
    self.fetch_command(subcommand).run_from_argv(self.argv) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/base.py", line 283, in run_from_argv 
    self.execute(*args, **cmd_options) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/base.py", line 330, in execute 
    output = self.handle(*args, **options) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/commands/migrate.py", line 204, in handle 
    fake_initial=fake_initial, 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/migrations/executor.py", line 115, in migrate 
    state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/migrations/executor.py", line 145, in _migrate_all_forwards 
    state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/migrations/executor.py", line 244, in apply_migration 
    state = migration.apply(state, schema_editor) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/migrations/migration.py", line 129, in apply 
    operation.database_forwards(self.app_label, schema_editor, old_state, project_state) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/migrations/operations/fields.py", line 215, in database_forwards 
    schema_editor.alter_field(from_model, from_field, to_field) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/backends/base/schema.py", line 513, in alter_field 
    old_db_params, new_db_params, strict) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/backends/postgresql/schema.py", line 112, in _alter_field 
    new_db_params, strict, 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/backends/base/schema.py", line 674, in _alter_field 
    params, 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/backends/base/schema.py", line 119, in execute 
    cursor.execute(sql, params) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/backends/utils.py", line 65, in execute 
    return self.cursor.execute(sql, params) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/utils.py", line 94, in __exit__ 
    six.reraise(dj_exc_type, dj_exc_value, traceback) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/utils/six.py", line 685, in reraise 
    raise value.with_traceback(tb) 
    File "/app/.heroku/python/lib/python3.6/site-packages/django/db/backends/utils.py", line 65, in execute 
    return self.cursor.execute(sql, params) 
django.db.utils.ProgrammingError: cannot cast type date to integer 
LINE 1: ...LTER COLUMN "date_id" TYPE integer USING "date_id"::integer,... 

答えて

0

日時ものにする整数型から日付列を移行するには、既存のを処理するために必要がある場合移行を実行する前に、テーブルにあるエントリ カラムタイプを変更しようとすると、既にdateカラムにいくつかの整数がある可能性があります。そのため、postgresは整数をdatetimeに変換する方法を知らないため、変換に失敗します。あなたがそれらを気にしない場合は、すべてのエントリを削除するか、あるいはあなたが別々のステップに移行分割する必要があり

  1. 一時的な名前
  2. で新しいdatetime型の列を作成します。データ移行を実行して整数を日付時刻に変換し、新しい列を作成する
  3. 古い整数の日付列を削除し、新しい列の名前を最終的な名前に変更します。
+0

日付の列を整数からdatetimeに変換する必要はありません。これは常にdatetimeカラムであり、新しいdbにはデータはありません。私はsqlitedbからposgresdbに移行しています(申し訳ありませんが、前に言及しませんでした)、新しいフィールドをmy.pyから新しいposgresdbに書き込むだけです。私はcharfieldに日付フィールドを変更しようとして、私は新しいposgresdbを立てるときに同じエラーが発生します。 – grigs

+0

私はそれを理解しました。私の古いmigration.pyファイルはすべて、Herokuの最初の移行を中断していたことが判明しました。私はアプリ内の古い移行ファイルを削除しました。私のアプリとすべてが必要なように走った。私は答えを追加します。 – grigs

関連する問題