Changes between Version 1 and Version 2 of Ticket #31653, comment 4


Ignore:
Timestamp:
Jun 3, 2020, 7:45:52 AM (4 years ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31653, comment 4

    v1 v2  
    1010class Migration(migrations.Migration):
    1111    operations = [
     12        # BEGIN
    1213        AddConstraint(Constraint(name='foo'), validate=False),
     14        # COMMIT
    1315    ]
    1416
    1517class Migration(migrations.Migration):
    1618    operations = [
     19        # BEGIN
    1720        ValidateConstraint('foo'),
     21        # COMMIT
    1822    ]
    1923}}}
Back to Top