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

Squash migrations for alerts app into one

parent 1f879ff4
No related branches found
No related tags found
No related merge requests found
Showing
with 18 additions and 425 deletions
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-17 20:40
# Generated by Django 1.11.18 on 2019-03-05 20:50
from __future__ import unicode_literals
import alerts.fields
......@@ -13,7 +13,7 @@ class Migration(migrations.Migration):
initial = True
dependencies = [
('events', '0031_hwinj_labels'),
('events', '0032_create_imbh_search'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
......@@ -22,23 +22,33 @@ class Migration(migrations.Migration):
name='Contact',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('desc', models.CharField(max_length=20)),
('email', models.EmailField(blank=True, max_length=254)),
('phone', alerts.fields.PhoneNumberField(blank=True, max_length=255)),
('call_phone', models.BooleanField(default=False)),
('text_phone', models.BooleanField(default=False)),
('description', models.CharField(max_length=30)),
('email', models.EmailField(blank=True, max_length=254, null=True)),
('phone', alerts.fields.PhoneNumberField(blank=True, max_length=255, null=True)),
('phone_method', models.CharField(blank=True, choices=[(b'C', b'Call'), (b'T', b'Text'), (b'B', b'Call and text')], default=None, max_length=1, null=True)),
('verified', models.BooleanField(default=False, editable=False)),
('verification_code', models.IntegerField(editable=False, null=True)),
('verification_expiration', models.DateTimeField(editable=False, null=True)),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
],
options={
'abstract': False,
},
),
migrations.CreateModel(
name='Notification',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('description', models.CharField(max_length=40)),
('far_threshold', models.FloatField(blank=True, null=True)),
('label_query', models.CharField(blank=True, max_length=100)),
('label_query', models.CharField(blank=True, max_length=100, null=True)),
('category', models.CharField(choices=[(b'E', b'Event'), (b'S', b'Superevent')], default=b'S', max_length=1)),
('ns_candidate', models.BooleanField(default=False)),
('contacts', models.ManyToManyField(to='alerts.Contact')),
('groups', models.ManyToManyField(blank=True, to='events.Group')),
('labels', models.ManyToManyField(blank=True, to='events.Label')),
('pipelines', models.ManyToManyField(blank=True, to='events.Pipeline')),
('searches', models.ManyToManyField(blank=True, to='events.Search')),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
],
),
......
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-21 15:57
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('alerts', '0001_initial'),
]
operations = [
migrations.RenameField(
model_name='contact',
old_name='desc',
new_name='description',
),
migrations.RemoveField(
model_name='contact',
name='call_phone',
),
migrations.RemoveField(
model_name='contact',
name='text_phone',
),
migrations.AddField(
model_name='contact',
name='phone_method',
field=models.CharField(blank=True, choices=[(b'C', b'Call'), (b'T', b'Text'), (b'B', b'Call and text')], default=None, max_length=1, null=True),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-21 16:57
from __future__ import unicode_literals
import alerts.fields
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('alerts', '0002_auto_20190121_1557'),
]
operations = [
migrations.AlterField(
model_name='contact',
name='email',
field=models.EmailField(blank=True, max_length=254, null=True),
),
migrations.AlterField(
model_name='contact',
name='phone',
field=alerts.fields.PhoneNumberField(blank=True, max_length=255, null=True),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-21 17:00
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('alerts', '0003_auto_20190121_1657'),
]
operations = [
migrations.AddField(
model_name='contact',
name='verified',
field=models.BooleanField(default=False),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-21 17:03
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('alerts', '0004_contact_verified'),
]
operations = [
migrations.AlterField(
model_name='contact',
name='verified',
field=models.BooleanField(default=False, editable=False),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-23 21:19
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('alerts', '0005_auto_20190121_1703'),
]
operations = [
migrations.AddField(
model_name='contact',
name='verification_code',
field=models.IntegerField(editable=False, null=True),
),
migrations.AddField(
model_name='contact',
name='verification_requested',
field=models.DateTimeField(editable=False, null=True),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-23 21:20
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('alerts', '0006_auto_20190123_2119'),
]
operations = [
migrations.RenameField(
model_name='contact',
old_name='verification_requested',
new_name='verification_expires',
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-23 21:20
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('alerts', '0007_auto_20190123_2120'),
]
operations = [
migrations.RenameField(
model_name='contact',
old_name='verification_expires',
new_name='verification_expiration',
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-31 19:16
from __future__ import unicode_literals
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('events', '0031_hwinj_labels'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('alerts', '0008_auto_20190123_2120'),
]
operations = [
migrations.CreateModel(
name='EventNotification',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('far_threshold', models.FloatField(blank=True, null=True)),
('label_query', models.CharField(blank=True, max_length=100, null=True)),
('ns_candidate', models.BooleanField(default=False)),
('contacts', models.ManyToManyField(to='alerts.Contact')),
('groups', models.ManyToManyField(to='events.Group')),
('labels', models.ManyToManyField(to='events.Label')),
('pipelines', models.ManyToManyField(to='events.Pipeline')),
('searches', models.ManyToManyField(to='events.Search')),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
],
options={
'abstract': False,
},
),
migrations.CreateModel(
name='SupereventNotification',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('far_threshold', models.FloatField(blank=True, null=True)),
('label_query', models.CharField(blank=True, max_length=100, null=True)),
('contacts', models.ManyToManyField(to='alerts.Contact')),
('labels', models.ManyToManyField(to='events.Label')),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
],
options={
'abstract': False,
},
),
migrations.RemoveField(
model_name='notification',
name='contacts',
),
migrations.RemoveField(
model_name='notification',
name='labels',
),
migrations.RemoveField(
model_name='notification',
name='pipelines',
),
migrations.RemoveField(
model_name='notification',
name='user',
),
migrations.DeleteModel(
name='Notification',
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-31 19:34
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('alerts', '0009_auto_20190131_1916'),
]
operations = [
migrations.AddField(
model_name='supereventnotification',
name='ns_candidate',
field=models.BooleanField(default=False),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-31 19:53
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('alerts', '0010_supereventnotification_ns_candidate'),
]
operations = [
migrations.AlterField(
model_name='eventnotification',
name='groups',
field=models.ManyToManyField(blank=True, to='events.Group'),
),
migrations.AlterField(
model_name='eventnotification',
name='labels',
field=models.ManyToManyField(blank=True, to='events.Label'),
),
migrations.AlterField(
model_name='eventnotification',
name='pipelines',
field=models.ManyToManyField(blank=True, to='events.Pipeline'),
),
migrations.AlterField(
model_name='eventnotification',
name='searches',
field=models.ManyToManyField(blank=True, to='events.Search'),
),
migrations.AlterField(
model_name='supereventnotification',
name='labels',
field=models.ManyToManyField(blank=True, to='events.Label'),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-31 20:27
from __future__ import unicode_literals
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('events', '0031_hwinj_labels'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('alerts', '0011_auto_20190131_1953'),
]
operations = [
migrations.CreateModel(
name='Notification',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('far_threshold', models.FloatField(blank=True, null=True)),
('label_query', models.CharField(blank=True, max_length=100, null=True)),
('category', models.CharField(choices=[(b'E', b'Event'), (b'S', b'Superevent')], default=b'S', max_length=1)),
('ns_candidate', models.BooleanField(default=False)),
('contacts', models.ManyToManyField(to='alerts.Contact')),
('groups', models.ManyToManyField(blank=True, to='events.Group')),
('labels', models.ManyToManyField(blank=True, to='events.Label')),
('pipelines', models.ManyToManyField(blank=True, to='events.Pipeline')),
('searches', models.ManyToManyField(blank=True, to='events.Search')),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
],
),
migrations.RemoveField(
model_name='eventnotification',
name='contacts',
),
migrations.RemoveField(
model_name='eventnotification',
name='groups',
),
migrations.RemoveField(
model_name='eventnotification',
name='labels',
),
migrations.RemoveField(
model_name='eventnotification',
name='pipelines',
),
migrations.RemoveField(
model_name='eventnotification',
name='searches',
),
migrations.RemoveField(
model_name='eventnotification',
name='user',
),
migrations.RemoveField(
model_name='supereventnotification',
name='contacts',
),
migrations.RemoveField(
model_name='supereventnotification',
name='labels',
),
migrations.RemoveField(
model_name='supereventnotification',
name='user',
),
migrations.DeleteModel(
name='EventNotification',
),
migrations.DeleteModel(
name='SupereventNotification',
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-02-01 11:50
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('alerts', '0012_auto_20190131_2027'),
]
operations = [
migrations.AddField(
model_name='notification',
name='description',
field=models.CharField(default='description', max_length=30),
preserve_default=False,
),
migrations.AlterField(
model_name='contact',
name='description',
field=models.CharField(max_length=30),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-02-01 11:59
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('alerts', '0013_auto_20190201_1150'),
]
operations = [
migrations.AlterField(
model_name='notification',
name='description',
field=models.CharField(max_length=40),
),
]
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