25 lines
646 B
Python
25 lines
646 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('osusers', '0003_user_customer'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='user',
|
||
|
options={'verbose_name': 'User', 'verbose_name_plural': 'Users'},
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='shadow',
|
||
|
name='user',
|
||
|
field=models.OneToOneField(primary_key=True, serialize=False, to='osusers.User', verbose_name='User'),
|
||
|
preserve_default=True,
|
||
|
),
|
||
|
]
|