Skip to content
Snippets Groups Projects
Commit 87e25688 authored by Dan Braghis's avatar Dan Braghis Committed by Todd Dembrey
Browse files

Add migration for enforced unique email

parent 12133abe
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
# Generated by Django 1.11.8 on 2018-01-25 10:16
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('users', '0003_user_full_name'),
]
operations = [
migrations.AlterModelOptions(
name='user',
options={},
),
migrations.AlterUniqueTogether(
name='user',
unique_together=set([('email',)]),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment