Skip to content

Commit

Permalink
adding migration file that should have been part of previoius release
Browse files Browse the repository at this point in the history
  • Loading branch information
arderyp committed Jan 17, 2025
1 parent 5472643 commit ca2fe5e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions citations/migrations/0003_alter_citation_status.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.17 on 2025-01-17 21:51

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('citations', '0002_alter_citation_id'),
]

operations = [
migrations.AlterField(
model_name='citation',
name='status',
field=models.CharField(choices=[('a', 'available'), ('u', 'unavailable'), ('r', 'redirect'), ('x', 'auto-validated from previous draft of opinion')], default='a', max_length=1),
),
]

0 comments on commit ca2fe5e

Please sign in to comment.