From d27bc8209886017ef000784a3ba19a942d6becea Mon Sep 17 00:00:00 2001 From: Ethan Nguyen Date: Thu, 22 Apr 2021 23:39:43 -0400 Subject: [PATCH] chore(authentication): bump bio to 1500 characters --- .../migrations/0008_alter_user_biography.py | 18 ++++++++++++++++++ tjdests/apps/authentication/models.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 tjdests/apps/authentication/migrations/0008_alter_user_biography.py diff --git a/tjdests/apps/authentication/migrations/0008_alter_user_biography.py b/tjdests/apps/authentication/migrations/0008_alter_user_biography.py new file mode 100644 index 0000000..035d793 --- /dev/null +++ b/tjdests/apps/authentication/migrations/0008_alter_user_biography.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2 on 2021-04-23 03:38 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("authentication", "0007_alter_user_gpa"), + ] + + operations = [ + migrations.AlterField( + model_name="user", + name="biography", + field=models.TextField(blank=True, max_length=1500), + ), + ] diff --git a/tjdests/apps/authentication/models.py b/tjdests/apps/authentication/models.py index c7d3d2f..a40a3ad 100644 --- a/tjdests/apps/authentication/models.py +++ b/tjdests/apps/authentication/models.py @@ -19,7 +19,7 @@ class User(AbstractUser): verbose_name="Publish my data", help_text="Unless this is set, your data will not appear publicly.", ) - biography = models.TextField(blank=True, max_length=1000) + biography = models.TextField(blank=True, max_length=1500) attending_decision = models.ForeignKey( Decision,