Skip to content

Commit

Permalink
build: Add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Nov 7, 2024
1 parent a6e1be7 commit 6e27df3
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions data_registry/migrations/0058_alter_collection_update_frequency.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Generated by Django 4.2.16 on 2024-11-07 17:43

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("data_registry", "0057_collection_publication_policy_and_more"),
]

operations = [
migrations.AlterField(
model_name="collection",
name="update_frequency",
field=models.TextField(
blank=True,
choices=[
("UNKNOWN", "Unknown"),
("REAL_TIME", "Real time"),
("HOURLY", "Hourly"),
("DAILY", "Daily"),
("WEEKLY", "Weekly"),
("MONTHLY", "Monthly"),
("QUARTERLY", "Every 3 months"),
("HALF_YEARLY", "Every 6 months"),
("ANNUALLY", "Annually"),
],
default="UNKNOWN",
help_text="The frequency at which the source updates the publication.",
),
),
]

0 comments on commit 6e27df3

Please sign in to comment.