Changes between Initial Version and Version 1 of Ticket #34050, comment 1
- Timestamp:
- Sep 25, 2022, 1:50:25 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34050, comment 1
initial v1 1 1 Can confirm this. 2 2 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 aswe're not doing any imports of migrations we should be fine.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) – if we're not doing any imports of migrations we should be fine. 4 4 5 5 The PR replaces the dots with underscores - that's one solution which addresses the immediate issue but I'm just wondering whether: 6 6 7 7 a.) Any invalid character is replaced to ensure there are no more problems like this; or 8 b.) Migrations (ie `showmigrations` and `migrate`) do not lookskip files with multiple dots?8 b.) Migrations (ie `showmigrations` and `migrate`) do not skip files with multiple dots?