Skip to content

Commit

Permalink
Merge pull request #24 from recipeasyy/feat/accounts
Browse files Browse the repository at this point in the history
fix: email max length
  • Loading branch information
aqswa authored Dec 23, 2022
2 parents 2eeedfe + 7605a76 commit 93f9f90
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions accounts/migrations/0003_alter_user_email.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.1.3 on 2022-12-23 01:11

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('accounts', '0002_alter_user_password'),
]

operations = [
migrations.AlterField(
model_name='user',
name='email',
field=models.EmailField(max_length=100, unique=True),
),
]

0 comments on commit 93f9f90

Please sign in to comment.