12795 add comment to migration db_table

This commit is contained in:
Arthur 2024-02-02 15:42:14 -08:00
parent 6358b4204b
commit d0e3c399be

View File

@ -27,6 +27,8 @@ class Migration(migrations.Migration):
] ]
operations = [ operations = [
# 0001_squashed had model with db_table=auth_user - now we switch it
# to None to use the default Django resolution (users.user)
migrations.AlterModelTable( migrations.AlterModelTable(
name='user', name='user',
table=None, table=None,