You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some features which are not supported yet. Please check the Limitations first to see if your bug is listed.
Software versions
Django: 4.2.3
mssql-django: 1.3
python: 3.11
OS: Windows 10
Problem description and steps to reproduce
When adding an AutoField or BigAutoField to a model the 'IDENTITY (1, 1)' suffix is not being added to the sql code of the migration.
There are some features which are not supported yet. Please check the Limitations first to see if your bug is listed.
Software versions
Problem description and steps to reproduce
When adding an AutoField or BigAutoField to a model the 'IDENTITY (1, 1)' suffix is not being added to the sql code of the migration.
This is the migration:
The sql code generated with the
python3 manage.py sqlmigrate
command:The expected sql code:
Any other details that can be helpful
I see the suffixes are defined in
base.py
but they are not being used:The text was updated successfully, but these errors were encountered: