From a45a7552146801154f2267fe7e8fae443605bfe3 Mon Sep 17 00:00:00 2001 From: Sawyer Bergeron Date: Mon, 9 Nov 2020 19:50:42 +0000 Subject: Add migrations for pulling prod to current master Signed-off-by: Sawyer Bergeron Change-Id: I4f11316b161e6e04e1e5cb811482adc22e3e69f3 --- src/account/migrations/0006_auto_20201109_1947.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/account/migrations/0006_auto_20201109_1947.py (limited to 'src/account/migrations/0006_auto_20201109_1947.py') diff --git a/src/account/migrations/0006_auto_20201109_1947.py b/src/account/migrations/0006_auto_20201109_1947.py new file mode 100644 index 0000000..d08c426 --- /dev/null +++ b/src/account/migrations/0006_auto_20201109_1947.py @@ -0,0 +1,23 @@ +# Generated by Django 2.2 on 2020-11-09 19:47 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('account', '0005_auto_20200723_2100'), + ] + + operations = [ + migrations.AlterField( + model_name='userprofile', + name='full_name', + field=models.CharField(blank=True, default='', max_length=100, null=True), + ), + migrations.AlterField( + model_name='userprofile', + name='jira_url', + field=models.CharField(blank=True, default='', max_length=100, null=True), + ), + ] -- cgit 1.2.3-korg