Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#1815 | added missed migration
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed May 9, 2024
1 parent 071e63c commit cc86fd9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions core/sources/migrations/0042_alter_source_content_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.4 on 2024-05-09 00:55

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('sources', '0041_source_source_org_released_and_more'),
]

operations = [
migrations.AlterField(
model_name='source',
name='content_type',
field=models.TextField(blank=True, choices=[('not-present', 'not-present'), ('example', 'example'), ('fragment', 'fragment'), ('complete', 'complete'), ('supplement', 'supplement')], null=True),
),
]

0 comments on commit cc86fd9

Please sign in to comment.