Ticket #28073: 0002_auto_20141127_1710.py

File 0002_auto_20141127_1710.py, 621 bytes (added by Logan Gunthorpe, 7 years ago)
Line 
1# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import models, migrations
5from django.conf import settings
6
7
8class Migration(migrations.Migration):
9
10 dependencies = [
11 ('accounts', '0001_initial'),
12 ]
13
14 operations = [
15 migrations.RemoveField(
16 model_name='userprofile',
17 name='id',
18 ),
19
20 migrations.AlterField(
21 model_name='userprofile',
22 name='user',
23 field=models.OneToOneField(primary_key=True, serialize=False, to=settings.AUTH_USER_MODEL),
24 preserve_default=True,
25 ),
26 ]
Back to Top