1. 18 Ock, 2016 1 kayıt (commit)
  2. 07 Ock, 2016 1 kayıt (commit)
  3. 06 Ock, 2016 1 kayıt (commit)
  4. 18 Ara, 2015 1 kayıt (commit)
  5. 12 Ara, 2015 1 kayıt (commit)
  6. 28 Kas, 2015 1 kayıt (commit)
  7. 09 Kas, 2015 1 kayıt (commit)
  8. 07 Kas, 2015 1 kayıt (commit)
  9. 27 Eki, 2015 1 kayıt (commit)
  10. 21 Eki, 2015 2 kayıt (commit)
  11. 07 Eki, 2015 1 kayıt (commit)
  12. 06 Eki, 2015 1 kayıt (commit)
  13. 02 Eki, 2015 1 kayıt (commit)
  14. 21 Eyl, 2015 1 kayıt (commit)
  15. 18 Eyl, 2015 1 kayıt (commit)
  16. 31 Agu, 2015 1 kayıt (commit)
  17. 27 Agu, 2015 1 kayıt (commit)
  18. 25 Agu, 2015 1 kayıt (commit)
  19. 24 Agu, 2015 2 kayıt (commit)
    • Maxime Lorant's avatar
    • Tommy Beadle's avatar
      Fixed #23727 -- Inhibited the post_migrate signal when using serialized_rollback. · d3fdaf90
      Tommy Beadle yazdı
      When using a TransactionTestCase with serialized_rollback=True,
      after creating the database and running its migrations (along with
      emitting the post_migrate signal), the contents of the database
      are serialized to _test_serialized_contents.
      
      After the first test case, _fixture_teardown() would flush the
      tables but then the post_migrate signal would be emitted and new
      rows (with new PKs) would be created in the django_content_type
      table. Then in any subsequent test cases in a suite,
      _fixture_setup() attempts to deserialize the content of
       _test_serialized_contents, but these rows are identical to the
      rows already in the database except for their PKs.  This causes an
      IntegrityError due to the unique constraint in the
      django_content_type table.
      
      This change made it so that in the above scenario the post_migrate
      signal is not emitted after flushing the tables, since it will be
      repopulated during fixture_setup().
      d3fdaf90
  20. 15 Agu, 2015 1 kayıt (commit)
  21. 11 Agu, 2015 1 kayıt (commit)
  22. 22 Tem, 2015 1 kayıt (commit)
  23. 13 Tem, 2015 1 kayıt (commit)
    • Andrei Kulakov's avatar
      Fixed #24375 -- Added Migration.initial attribute · db97a884
      Andrei Kulakov yazdı
      The new attribute is checked when the `migrate --fake-initial` option
      is used. initial will be set to True for all initial migrations (this
      is particularly useful when initial migrations are split) as well as
      for squashed migrations.
      db97a884
  24. 03 Tem, 2015 1 kayıt (commit)
  25. 02 Tem, 2015 2 kayıt (commit)
  26. 22 Haz, 2015 1 kayıt (commit)
  27. 18 Haz, 2015 1 kayıt (commit)
  28. 17 Haz, 2015 2 kayıt (commit)
  29. 11 Haz, 2015 1 kayıt (commit)
  30. 09 Haz, 2015 1 kayıt (commit)
  31. 06 Haz, 2015 1 kayıt (commit)
  32. 05 Haz, 2015 1 kayıt (commit)
  33. 31 May, 2015 1 kayıt (commit)
  34. 19 May, 2015 1 kayıt (commit)
  35. 16 May, 2015 1 kayıt (commit)
  36. 24 Nis, 2015 1 kayıt (commit)