Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个以整数集作为主键的旧数据库。它最初是手动管理的,但由于我们想迁移到 django,因此管理工具似乎是正确的起点。我创建了模型并尝试将主键设置为自动字段。它似乎没有记住更新中的旧 id,并且它不会在插入时创建新的 id。我究竟做错了什么?
DB负责管理ID的值。如果要使用 AutoField,则必须更改数据库中的列才能使用它。Django不负责管理生成的 ID