Opened 9 months ago
Closed 9 months ago
#35175 closed Bug (fixed)
Migration Operation CreateCollation kwargs are truncated when used with makemigrations --update
Reported by: | Gerald Goh | Owned by: | David Sanders |
---|---|---|---|
Component: | Migrations | Version: | 4.2 |
Severity: | Normal | Keywords: | |
Cc: | Gerald Goh | Triage Stage: | Ready for checkin |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
For this case I have created an initial migration where a collation is the only operation
I wish to merge my initial user model creation with the collation creation so this is done at the same time.
Input (from 0001_collation.py)
django.contrib.postgres.operations.CreateCollation( name='case_insensitive', provider='icu', locale='und-u-ks-level2', deterministic=False, ),
Expected Output (0001_initial.py)
django.contrib.postgres.operations.CreateCollation( name='case_insensitive', provider='icu', locale='und-u-ks-level2', deterministic=False, ),
Actual Output (0001_initial.py)
django.contrib.postgres.operations.CreateCollation( name='case_insensitive', locale='und-u-ks-level2', ),
Possibly caused by
django/contrib/postgres/operations.py:169
def __init__(self, name, locale, *, provider="libc", deterministic=True):
With "provider" and "deterministic" being keyword arguments only.
Change History (6)
comment:1 by , 9 months ago
Cc: | added |
---|
comment:2 by , 9 months ago
Version: | 5.0 → 4.2 |
---|
comment:3 by , 9 months ago
Summary: | Migration Operation CreateCollation kwargs is truncated when used with makemigrations --update → Migration Operation CreateCollation kwargs are truncated when used with makemigrations --update |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:4 by , 9 months ago
Has patch: | set |
---|---|
Needs tests: | set |
Owner: | changed from | to
Status: | new → assigned |
comment:5 by , 9 months ago
Needs tests: | unset |
---|---|
Triage Stage: | Accepted → Ready for checkin |
Note:
See TracTickets
for help on using tickets.
Thanks for the report 🏆
Confirmed that these kwargs disappear with an update.