Skip to content

Commit

Permalink
Expand Outages Content from 4000 to 8000 characters needed to merge O…
Browse files Browse the repository at this point in the history
…utage update text
  • Loading branch information
jpnavarro committed Jul 23, 2022
1 parent 271567b commit 6f8431e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
tag-2.4-20220723
- Expand Outages Content from 4000 to 8000 characters needed to merge Outage update text

tag-2.4-20220331
- Enhance resources-sgci/v1.0.0 API to include TACC resources

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.24 on 2022-07-23 12:43

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('outages', '0002_auto_20190317_0333'),
]

operations = [
migrations.AlterField(
model_name='outages',
name='Content',
field=models.CharField(db_index=True, max_length=8000),
),
]
2 changes: 1 addition & 1 deletion django_xsede_warehouse/outages/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Outages(models.Model):
ResourceID = models.CharField(max_length=64)
WebURL = models.CharField(max_length=320)
Subject = models.CharField(db_index=True, max_length=120)
Content = models.CharField(db_index=True, max_length=4000)
Content = models.CharField(db_index=True, max_length=8000)
OutageStart = models.DateTimeField(null=True)
OutageEnd = models.DateTimeField(null=True)
SiteID = models.CharField(db_index=True, max_length=40)
Expand Down

0 comments on commit 6f8431e

Please sign in to comment.