Skip to content

Commit

Permalink
chore: Create no-op migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jun 11, 2024
1 parent 231aedb commit 90836b6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions process/migrations/0038_alter_collection_source_id.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Generated by Django 4.2.11 on 2024-06-11 22:16

import django.core.validators
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("process", "0037_remove_record_unique_record_identifiers"),
]

operations = [
migrations.AlterField(
model_name="collection",
name="source_id",
field=models.TextField(
help_text="If sourced from Scrapy, this should be the name of the spider.",
validators=[
django.core.validators.RegexValidator(
"^([a-z]+_)*[a-z]+$", "source_id must be letters and underscores only"
)
],
),
),
]

0 comments on commit 90836b6

Please sign in to comment.