Changes between Version 2 and Version 3 of Ticket #27311
- Timestamp:
- Oct 4, 2016, 12:34:26 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27311
- Property Component Uncategorized → Migrations
-
Ticket #27311 – Description
v2 v3 1 Trying to create the migration below which is failing. It seems like the same issue discussed and resolved here https://code.djangoproject.com/ticket/242821 Trying to create the migration below which is failing. It seems like the same issue discussed and resolved in #24282. 2 2 3 3 {{{ … … 10 10 11 11 b = B( 12 client=a.user ),12 client=a.user, 13 13 status=5 14 14 ) 15 invoice.save() 16 15 b.save() 17 16 }}} 18 17 … … 25 24 status=5 26 25 ) 27 28 26 }}} 29 27