Changes between Initial Version and Version 3 of Ticket #27417


Ignore:
Timestamp:
11/09/16 18:10:27 (6 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 Status changed from new to assigned
    • Property Severity changed from Release blocker to Normal
    • Property Summary changed from Change case on field causes invalid rename on Oracle backend migration to Migration to change model field case crashes on Oracle
    • Property Easy pickings unset
    • Property Owner changed from nobody to Zach Zundel
    • Property Type changed from Uncategorized to Bug
    • Property Triage Stage changed from Unreviewed to Accepted
  • 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