Changes between Version 1 and Version 2 of Ticket #31653, comment 4
- Timestamp:
- Jun 3, 2020, 7:45:52 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31653, comment 4
v1 v2 10 10 class Migration(migrations.Migration): 11 11 operations = [ 12 # BEGIN 12 13 AddConstraint(Constraint(name='foo'), validate=False), 14 # COMMIT 13 15 ] 14 16 15 17 class Migration(migrations.Migration): 16 18 operations = [ 19 # BEGIN 17 20 ValidateConstraint('foo'), 21 # COMMIT 18 22 ] 19 23 }}}