Commit a37db382 by José Padilla

Update authtoken latest Django 1.7 migration

parent 92fb08bc
# encoding: utf8
from __future__ import unicode_literals
from django.db import models, migrations
......@@ -16,11 +16,10 @@ class Migration(migrations.Migration):
name='Token',
fields=[
('key', models.CharField(max_length=40, serialize=False, primary_key=True)),
('user', models.OneToOneField(to=settings.AUTH_USER_MODEL, to_field='id')),
('created', models.DateTimeField(auto_now_add=True)),
('user', models.OneToOneField(related_name=b'auth_token', to=settings.AUTH_USER_MODEL)),
],
options={
'abstract': False,
},
bases=(models.Model,),
),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment