1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-07-06 13:34:01 +02:00

Rename surname to last_name

This commit is contained in:
Alexandre Iooss
2019-08-02 21:47:54 +02:00
parent e82053d16f
commit 3509491076
13 changed files with 137 additions and 36 deletions

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.22 on 2019-08-02 19:43
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0015_auto_20190802_2143'),
]
operations = [
migrations.AlterField(
model_name='user',
name='last_name',
field=models.CharField(blank=True, max_length=30, verbose_name='last name'),
),
]