Changes between Initial Version and Version 1 of Ticket #34050, comment 1


Ignore:
Timestamp:
Sep 25, 2022, 1:50:25 AM (20 months ago)
Author:
David Sanders

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34050, comment 1

    initial v1  
    11Can confirm this.
    22
    3 It's worth highlighting is that migrations literally copies the constraint name verbatim for **any** invalid Python module character not just dots "." and will happily apply these (as long as there's no dots) – as long as we're not doing any imports of migrations we should be fine.
     3It's worth highlighting is that migrations literally copies the constraint name verbatim for **any** invalid Python module character not just dots "." and will happily apply these (as long as there's no dots) – if we're not doing any imports of migrations we should be fine.
    44
    55The PR replaces the dots with underscores - that's one solution which addresses the immediate issue but I'm just wondering whether:
    66
    77a.) Any invalid character is replaced to ensure there are no more problems like this; or
    8 b.) Migrations (ie `showmigrations` and `migrate`) do not look skip files with multiple dots?
     8b.) Migrations (ie `showmigrations` and `migrate`) do not skip files with multiple dots?
Back to Top