add migration for verbose_name and verbose_name_plural in osusers.models.User
This commit is contained in:
parent
60301eea46
commit
0a17528c0c
1 changed files with 24 additions and 0 deletions
24
gnuviechadmin/osusers/migrations/0004_auto_20150104_1751.py
Normal file
24
gnuviechadmin/osusers/migrations/0004_auto_20150104_1751.py
Normal file
|
@ -0,0 +1,24 @@
|
|||
# -*- 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,
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue