Changes between Version 2 and Version 4 of Ticket #25216


Ignore:
Timestamp:
Aug 3, 2015, 7:07:55 PM (9 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25216 – Description

    v2 v4  
    11Hi,
    22I am using python version 3.4 and django 1.8.3, I have the following very simple code:
    3 
     3{{{
    44from django.contrib.auth.models import User
    55
     
    88    name = models.CharField(max_length=100)
    99    users = models.ManyToManyField(User, related_name='accessible_agents', default=[])
    10 
     10}}}
    1111and when I have an empty database, and do python manage.py migrate.
    1212
    1313It gives me error, and I tested on 1.7.8, it works fine.
    14 
     14{{{
    1515Operations to perform:
    1616  Synchronize unmigrated apps: staticfiles, download, messages
     
    8181    _mysql.connection.query(self, query)
    8282django.db.utils.OperationalError: (1005, "Can't create table 'portal_aperture.#sql-403_b3' (errno: 150)")
    83 
     83}}}
    8484Thanks.
Back to Top