Skip to content
Snippets Groups Projects
Commit 2bbbde56 authored by Tanner Prestegard's avatar Tanner Prestegard Committed by GraceDB
Browse files

updating userprofile migrations

parent d5ae9d28
No related branches found
No related tags found
1 merge request!6Rework migrations
......@@ -7,7 +7,7 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('userprofile', '0002_auto_20150708_1134'),
('userprofile', '0002_alter_email_field_length'),
]
operations = [
......
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-10-18 17:15
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('userprofile', '0005_separate_call_and_text_alerts'),
]
operations = [
migrations.AlterField(
model_name='trigger',
name='contacts',
field=models.ManyToManyField(to='userprofile.Contact'),
),
]
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