Changes between Initial Version and Version 3 of Ticket #31826


Ignore:
Timestamp:
Jul 25, 2020, 8:54:44 AM (4 years ago)
Author:
Iuri de Silvio
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31826

    • Property Owner changed from nobody to Iuri de Silvio
    • Property Status newassigned
  • Ticket #31826 – Description

    initial v3  
    1 When I change: `pink = models.Integer(default=0)` to `pink = models.Integer(default=0, db_column="pink")` the migration can recreate constraints if it is an FK or even reconstruct the table (SQLite).
     1When I change: `pink = models.Integer(default=0)` to `pink = models.Integer(default=0, db_column="pink")` the migration recreate constraints if it is an FK or even reconstruct the table (SQLite), but nothing really changed.
    22
    33The (same) constraint drop/create is a blocking operation for PostgreSQL, so it is an undesirable and unexpected behavior.
Back to Top