到目前为止,我已经使用了自己的用户模型,突然间我意识到django的用户模型正好提供了我必须自己创建的东西...为什么不采用django的用户模型..
现在我改变了用户模型,并通过添加:
使其继承自django用户模型class User(User)..
并尝试使用以下步骤迁移数据库:
1. python manage.py schemamigration home --auto
-- it asked me to give some default values for these two columns I mean down here
2. python manage.py migrate home
3. error
3. 错误表示user_ptr_id
存在两倍,这就是为什么无法创建唯一索引user_pkey
。
我现在可以做些什么才能移植?