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

Increase max length of single inspiral channel names

parent 80187545
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
# Generated by Django 1.11.16 on 2018-10-03 19:13
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('events', '0025_explicitly_create_access_tags'),
]
operations = [
migrations.AlterField(
model_name='singleinspiral',
name='channel',
field=models.CharField(blank=True, max_length=100),
),
]
...@@ -634,7 +634,7 @@ class SingleInspiral(models.Model): ...@@ -634,7 +634,7 @@ class SingleInspiral(models.Model):
event = models.ForeignKey(Event, null=False) event = models.ForeignKey(Event, null=False)
ifo = models.CharField(max_length=20, null=True) ifo = models.CharField(max_length=20, null=True)
search = models.CharField(max_length=20, null=True) search = models.CharField(max_length=20, null=True)
channel = models.CharField(max_length=50, blank=True) channel = models.CharField(max_length=100, blank=True)
end_time = models.IntegerField(null=True) end_time = models.IntegerField(null=True)
end_time_ns = models.IntegerField(null=True) end_time_ns = models.IntegerField(null=True)
end_time_gmst = models.FloatField(null=True) end_time_gmst = models.FloatField(null=True)
......
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