Changes between Initial Version and Version 1 of Ticket #36037
- Timestamp:
- Dec 24, 2024, 2:27:32 PM (25 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36037 – Description
initial v1 1 Currently, Django's default primary key type is a BigAutoField. However, a couple of pages still talk about itbeing an IntegerField.1 BigAutoField is the default type of primary key now, and in Postgres, regular IntegerField only goes up to around 2 billion. However, a couple of pages still talk about the default primary key being an IntegerField. 2 2 3 3 Under https://docs.djangoproject.com/en/5.1/topics/db/models/#field-options: