Opened 8 months ago

Last modified 5 weeks ago

#35305 assigned Cleanup/optimization

No-op rename of field with `db_column` drops and recreates constraints/indexes.

Reported by: Jacob Walls Owned by: Ahmed Ibrahim
Component: Migrations Version: 4.2
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

With this model:

class MyModel(models.Model):
    foo = models.BooleanField(db_column="foobar")

    class Meta:
        constraints = [
            models.UniqueConstraint(
                fields=["foo"],
                name="unique_foo",
            ),
        ]

Suppose I wish to improve the name of the field so it agrees with the database column name:

class MyModel(models.Model):
    foobar = models.BooleanField(db_column="foobar")

    class Meta:
        constraints = [
            models.UniqueConstraint(
                fields=["foobar"],
                name="unique_foo",
            ),
        ]

That change generates a migration with this SQL, assuming you answer "was the field ... renamed..." with Yes:

BEGIN;
--
-- Remove constraint unique_foo from model mymodel
--
ALTER TABLE "models_mymodel" DROP CONSTRAINT "unique_foo";
--
-- Rename field foo on mymodel to foobar
--
-- (no-op)
--
-- Create constraint unique_foo on model mymodel
--
ALTER TABLE "models_mymodel" ADD CONSTRAINT "unique_foo" UNIQUE ("foobar");
COMMIT;

Suggesting that we compare on db_column if present to allow this kind of change to be a no-op with respect to constraints.

Change History (6)

comment:1 by Mariusz Felisiak, 8 months ago

Summary: No-op rename of field with `db_column` drops and recreates constraintsNo-op rename of field with `db_column` drops and recreates constraints/indexes.
Triage Stage: UnreviewedAccepted

Tentatively accepted.

comment:2 by Giannis Terzopoulos, 8 months ago

I had a brief look at this and it seems related to #35038 and the suggestion to add a new AlterConstraint operation. So maybe it's best to have that operation in place before someone works on this ticket.

in reply to:  2 comment:3 by Shubham Singh Sugara, 3 months ago

Replying to Giannis Terzopoulos:

I had a brief look at this and it seems related to #35038 and the suggestion to add a new AlterConstraint operation. So maybe it's best to have that operation in place before someone works on this ticket.

I commented on #35308 to see if issue is still there or some one is working on it
Maybe i can give it a try if no one else is trying , the old PR was closed due to solution not being right ,so lets see

comment:4 by Ahmed Ibrahim, 5 weeks ago

I'm taking this if no one minds

comment:5 by Ahmed Ibrahim, 5 weeks ago

Owner: changed from nobody to Ahmed Ibrahim
Status: newassigned

comment:6 by Jacob Walls, 5 weeks ago

Thanks, but before getting started I would evaluate if the situation has already been fixed in the PR for the closely related #35038. At the very least I would encourage branching off of that work.

Note: See TracTickets for help on using tickets.
Back to Top