From 8098b33698478ea3ada57d37cbc8ae7359f6502e Mon Sep 17 00:00:00 2001 From: David Taylor Date: Sun, 25 Mar 2018 00:20:51 +0000 Subject: [PATCH] Migrate profile to have longer last_name field (Django 2.0 updated AbstractUser model) --- RIGS/migrations/0033_auto_20180325_0016.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 RIGS/migrations/0033_auto_20180325_0016.py diff --git a/RIGS/migrations/0033_auto_20180325_0016.py b/RIGS/migrations/0033_auto_20180325_0016.py new file mode 100644 index 00000000..d88bd79f --- /dev/null +++ b/RIGS/migrations/0033_auto_20180325_0016.py @@ -0,0 +1,18 @@ +# Generated by Django 2.0.3 on 2018-03-25 00:16 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('RIGS', '0032_auto_20170904_2355'), + ] + + operations = [ + migrations.AlterField( + model_name='profile', + name='last_name', + field=models.CharField(blank=True, max_length=150, verbose_name='last name'), + ), + ]