Skip to content

Commit

Permalink
Add a migration for fields with changed verbose names
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvkb committed May 26, 2024
1 parent 482203c commit ca65f71
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions api/api/migrations/0064_define_verbose_names.py
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'),
),
]

0 comments on commit ca65f71

Please sign in to comment.