Skip to content

Commit

Permalink
Add migrations
Browse files Browse the repository at this point in the history
Signed-off-by: Olga Bulat <[email protected]>
  • Loading branch information
obulat committed Sep 5, 2024
1 parent 6b18ab3 commit cc3cc52
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions api/api/migrations/0069_alter_contentsource_source_identifier.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.11 on 2024-09-05 14:06

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('api', '0068_remove_audioreport_status_remove_imagereport_status'),
]

operations = [
migrations.AlterField(
model_name='contentsource',
name='source_identifier',
field=models.CharField(db_column='provider_identifier', max_length=80, unique=True),
),
]
2 changes: 1 addition & 1 deletion api/latest_migrations/api
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# If you have a merge conflict in this file, it means you need to run:
# manage.py makemigrations --merge
# in order to resolve the conflict between migrations.
0068_remove_audioreport_status_remove_imagereport_status
0069_alter_contentsource_source_identifier

0 comments on commit cc3cc52

Please sign in to comment.