mirror of
https://github.com/etnguyen03/tjdests.git
synced 2025-04-21 02:00:16 -04:00
chore(authentication): bump bio to 1500 characters
This commit is contained in:
parent
21df376be4
commit
d27bc82098
|
@ -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),
|
||||
),
|
||||
]
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue
Block a user