Skip to content
Snippets Groups Projects
Commit b04e88c2 authored by Alexander Pace's avatar Alexander Pace
Browse files

Two more migrations for RAVEN

For some reason, django makemigration wasn't recognizing that the
voevent ivorn table actually existed, so it was trying to recreate
that table and the pytests were running into an issue.
parent 262b98af
No related branches found
No related tags found
1 merge request!29Python3
# -*- coding: utf-8 -*-
# Generated by Django 1.11.23 on 2019-11-19 17:30
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('events', '0041_add_raven_voevent_fields'),
]
operations = [
migrations.AlterField(
model_name='voevent',
name='ivorn',
field=models.CharField(blank=True, default='', editable=False, max_length=300),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.23 on 2019-11-12 21:18
# Generated by Django 1.11.23 on 2019-11-19 17:39
from __future__ import unicode_literals
import django.core.validators
......@@ -63,7 +63,7 @@ class Migration(migrations.Migration):
name='time_coinc_far',
field=models.FloatField(blank=True, default=None, null=True, validators=[django.core.validators.MinValueValidator(0.0)]),
),
migrations.AddField(
migrations.AlterField(
model_name='voevent',
name='ivorn',
field=models.CharField(blank=True, default='', editable=False, max_length=300),
......
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