23 lines
467 B
Python
23 lines
467 B
Python
# Generated by Django 3.0.3 on 2020-03-06 09:45
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('crm', '0003_auto_20200306_1637'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='consumer',
|
|
old_name='mobile',
|
|
new_name='phone',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='consumer',
|
|
name='username',
|
|
),
|
|
]
|