-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a migration for fields with changed verbose names
- Loading branch information
Showing
2 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Generated by Django 4.2.11 on 2024-05-26 11:05 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api', '0063_merge_20240521_0843'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='audio', | ||
name='creator_url', | ||
field=models.TextField(blank=True, help_text='A direct link to the media creator.', max_length=2000, null=True, verbose_name='creator URL'), | ||
), | ||
migrations.AlterField( | ||
model_name='audio', | ||
name='foreign_landing_url', | ||
field=models.TextField(blank=True, help_text='The landing page of the work.', null=True, verbose_name='foreign landing URL'), | ||
), | ||
migrations.AlterField( | ||
model_name='audio', | ||
name='url', | ||
field=models.TextField(blank=True, help_text='The actual URL to the media file.', max_length=1000, null=True, unique=True, verbose_name='URL'), | ||
), | ||
migrations.AlterField( | ||
model_name='audioset', | ||
name='creator_url', | ||
field=models.TextField(blank=True, help_text='A direct link to the media creator.', max_length=2000, null=True, verbose_name='creator URL'), | ||
), | ||
migrations.AlterField( | ||
model_name='audioset', | ||
name='foreign_landing_url', | ||
field=models.TextField(blank=True, help_text='The landing page of the work.', null=True, verbose_name='foreign landing URL'), | ||
), | ||
migrations.AlterField( | ||
model_name='audioset', | ||
name='url', | ||
field=models.TextField(blank=True, help_text='The actual URL to the media file.', max_length=1000, null=True, unique=True, verbose_name='URL'), | ||
), | ||
migrations.AlterField( | ||
model_name='image', | ||
name='creator_url', | ||
field=models.TextField(blank=True, help_text='A direct link to the media creator.', max_length=2000, null=True, verbose_name='creator URL'), | ||
), | ||
migrations.AlterField( | ||
model_name='image', | ||
name='foreign_landing_url', | ||
field=models.TextField(blank=True, help_text='The landing page of the work.', null=True, verbose_name='foreign landing URL'), | ||
), | ||
migrations.AlterField( | ||
model_name='image', | ||
name='url', | ||
field=models.TextField(blank=True, help_text='The actual URL to the media file.', max_length=1000, null=True, unique=True, verbose_name='URL'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters