Skip to content

Commit

Permalink
fix: add migrations from 41 (dongri#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
ra0x3 committed Dec 20, 2023
1 parent eaacb8c commit eb13f8e
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Generated by Django 5.0 on 2023-12-20 22:00

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("users", "0012_twiliophoneauthrequest_deleted_at"),
]

operations = [
migrations.AlterField(
model_name="user",
name="email",
field=models.CharField(max_length=255, null=True),
),
migrations.AlterField(
model_name="user",
name="phone",
field=models.CharField(max_length=255, null=True),
),
migrations.AlterField(
model_name="user",
name="username",
field=models.CharField(max_length=255),
),
]

0 comments on commit eb13f8e

Please sign in to comment.