Skip to content

Commit

Permalink
rocky errata processing
Browse files Browse the repository at this point in the history
  • Loading branch information
furlongm committed Jan 16, 2025
1 parent 4f745a6 commit c906216
Show file tree
Hide file tree
Showing 4 changed files with 254 additions and 49 deletions.
19 changes: 19 additions & 0 deletions packages/migrations/0002_erratumreference_er_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.2.15 on 2025-01-12 21:12

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('packages', '0001_initial'),
]

operations = [
migrations.AddField(
model_name='erratumreference',
name='er_type',
field=models.CharField(default=None, max_length=255),
preserve_default=False,
),
]
1 change: 1 addition & 0 deletions packages/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ def __str__(self):

class ErratumReference(models.Model):

er_type = models.CharField(max_length=255)
url = models.URLField(max_length=255)

def __str__(self):
Expand Down
Loading

0 comments on commit c906216

Please sign in to comment.