Skip to content

Commit

Permalink
add email migration
Browse files Browse the repository at this point in the history
  • Loading branch information
magsyg committed Sep 21, 2023
1 parent 3bb6cb5 commit 31b9170
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions backend/samfundet/migrations/0038_alter_user_email.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.3 on 2023-09-21 17:18

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('samfundet', '0037_user_phone_number_alter_user_email'),
]

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

0 comments on commit 31b9170

Please sign in to comment.