ホームページ  >  に質問  >  本文

python - django 部署到heroku 如何删除数据库

model 中新增了一个对象 Message 和 并在另一个model中增加外键字段message,然后push到heroku上,同步migrate之后,发现新的表不能用. 但是本地是执行 python manage.py flush 之后同步的,没出问题, 但是在heroku上执行 flush 出错

CommandError: Database d4e4561s5hscht couldn't be flushed. Possible reasons:
  * The database isn't running or isn't configured correctly.
  * At least one of the expected database tables doesn't exist.
  * The SQL was invalid.
Hint: Look at the output of 'django-admin sqlflush'. That's the SQL this command wasn't able to run.
The full error: cannot truncate a table referenced in a foreign key constraint
DETAIL:  Table "blog_post" references "auth_user".
HINT:  Truncate table "blog_post" at the same time, or use TRUNCATE ... CASCADE.

请问怎么清理数据库

巴扎黑巴扎黑2764日前307

全員に返信(1)返信します

  • PHP中文网

    PHP中文网2017-04-17 15:23:26

    「blog_post」テーブルには、「auth_user」テーブルに関連付けられたフィールド外部キーがあります。
    Flush はテーブルを切り捨てるためのものです。もちろん、auth_user テーブルにデータがある場合は切り詰めることはできません。

    現在のバージョンでの通常のアプローチは次のとおりです:

    リーリー

    LZ が「移行後は新しい時計が使用できなくなる」と言ったのはわかりません

    なぜフラッシュするのですか? すべてがすでにオンラインになっていますが、まだデータを消去する必要がありますか?

    返事
    0
  • キャンセル返事