21 lines
427 B
Python
21 lines
427 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.22 on 2019-08-08 09:32
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0019_auto_20190802_2146'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='user',
|
|
old_name='name',
|
|
new_name='first_name',
|
|
),
|
|
]
|