Changes between Initial Version and Version 3 of Ticket #27417


Ignore:
Timestamp:
Nov 9, 2016, 12:10:27 PM (7 years ago)
Author:
Tim Graham
Comment:

Reproduced on master at 373c6c409c310cb61e1e9c9aff4adba379ffd0b4. The error when running the migration is "ORA-00957: duplicate column name".

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27417

    • Property Type UncategorizedBug
    • Property Owner changed from nobody to Zach Zundel
    • Property Status newassigned
    • Property Easy pickings unset
    • Property Severity Release blockerNormal
    • Property Triage Stage UnreviewedAccepted
    • Property Summary Change case on field causes invalid rename on Oracle backend migrationMigration to change model field case crashes on Oracle
  • Ticket #27417 – Description

    initial v3  
    22
    33{{{
    4 class MyModel(models.model):
     4class MyModel(models.Model):
    55    somefield = models.CharField(max_length=100)
    66}}}
Back to Top