Skip to content

Commit

Permalink
fixup! Upgrade to Django 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
dracos committed Nov 19, 2023
1 parent bc94013 commit c381450
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions profiles/migrations/0007_alter_user_first_name.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.23 on 2023-11-19 18:44

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('profiles', '0006_auto_20210403_1805'),
]

operations = [
migrations.AlterField(
model_name='user',
name='first_name',
field=models.CharField(blank=True, max_length=150, verbose_name='first name'),
),
]

0 comments on commit c381450

Please sign in to comment.