首頁 >php教程 >PHP开发 >Django 常見問題及解決方案總結

Django 常見問題及解決方案總結

高洛峰
高洛峰原創
2016-11-23 13:05:451172瀏覽

1. Django + PostgreSQL: How to reset primary key?

http://stackoverflow.com/questions/544791/django-postgresql-how-to-reset-primary-key

這個是用於在清除表中資料後,資料的pk 不從1開始成長,將序列重新設定為1的方法。

In your app directory try this:

python manage.py help sqlsequencereset

o   🜎

python manage.py sqlsequencereset myapp1 myapp2 | psql

   

Edit: here's an example of the output from this command on one of my _id_seq"', coalesce(max("id "), 1), max("id") IS NOT null) FROM "project_row";

COMMIT;

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn