Skip to content

Commit

Permalink
Add migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
AetherUnbound committed May 10, 2024
1 parent 9f69c08 commit 8bc9fe8
Show file tree
Hide file tree
Showing 3 changed files with 130 additions and 1 deletion.
124 changes: 124 additions & 0 deletions api/api/migrations/0061_convert_varchar_to_text.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
# Generated by Django 4.2.11 on 2024-05-10 22:07

import api.models.fields
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('api', '0060_fill_out_help_text'),
]

operations = [
migrations.AlterField(
model_name='audio',
name='audio_set_foreign_identifier',
field=models.TextField(blank=True, help_text='Reference to set of which this track is a part.', null=True),
),
migrations.AlterField(
model_name='audio',
name='creator',
field=models.TextField(blank=True, help_text='The name of the media creator.', null=True),
),
migrations.AlterField(
model_name='audio',
name='creator_url',
field=api.models.fields.URLTextField(blank=True, help_text='A direct link to the media creator.', max_length=2000, null=True),
),
migrations.AlterField(
model_name='audio',
name='foreign_identifier',
field=models.TextField(blank=True, db_index=True, help_text='The identifier provided by the upstream source.', null=True),
),
migrations.AlterField(
model_name='audio',
name='foreign_landing_url',
field=api.models.fields.URLTextField(blank=True, help_text='The landing page of the work.', null=True),
),
migrations.AlterField(
model_name='audio',
name='thumbnail',
field=api.models.fields.URLTextField(blank=True, help_text='The thumbnail for the media.', null=True),
),
migrations.AlterField(
model_name='audio',
name='title',
field=models.TextField(blank=True, help_text='The name of the media.', null=True),
),
migrations.AlterField(
model_name='audio',
name='url',
field=api.models.fields.URLTextField(blank=True, help_text='The actual URL to the media file.', max_length=1000, null=True, unique=True),
),
migrations.AlterField(
model_name='audioset',
name='creator',
field=models.TextField(blank=True, help_text='The name of the media creator.', null=True),
),
migrations.AlterField(
model_name='audioset',
name='creator_url',
field=api.models.fields.URLTextField(blank=True, help_text='A direct link to the media creator.', max_length=2000, null=True),
),
migrations.AlterField(
model_name='audioset',
name='foreign_identifier',
field=models.TextField(blank=True, db_index=True, help_text='The identifier provided by the upstream source.', null=True),
),
migrations.AlterField(
model_name='audioset',
name='foreign_landing_url',
field=api.models.fields.URLTextField(blank=True, help_text='The landing page of the work.', null=True),
),
migrations.AlterField(
model_name='audioset',
name='thumbnail',
field=api.models.fields.URLTextField(blank=True, help_text='The thumbnail for the media.', null=True),
),
migrations.AlterField(
model_name='audioset',
name='title',
field=models.TextField(blank=True, help_text='The name of the media.', null=True),
),
migrations.AlterField(
model_name='audioset',
name='url',
field=api.models.fields.URLTextField(blank=True, help_text='The actual URL to the media file.', max_length=1000, null=True, unique=True),
),
migrations.AlterField(
model_name='image',
name='creator',
field=models.TextField(blank=True, help_text='The name of the media creator.', null=True),
),
migrations.AlterField(
model_name='image',
name='creator_url',
field=api.models.fields.URLTextField(blank=True, help_text='A direct link to the media creator.', max_length=2000, null=True),
),
migrations.AlterField(
model_name='image',
name='foreign_identifier',
field=models.TextField(blank=True, db_index=True, help_text='The identifier provided by the upstream source.', null=True),
),
migrations.AlterField(
model_name='image',
name='foreign_landing_url',
field=api.models.fields.URLTextField(blank=True, help_text='The landing page of the work.', null=True),
),
migrations.AlterField(
model_name='image',
name='thumbnail',
field=api.models.fields.URLTextField(blank=True, help_text='The thumbnail for the media.', null=True),
),
migrations.AlterField(
model_name='image',
name='title',
field=models.TextField(blank=True, help_text='The name of the media.', null=True),
),
migrations.AlterField(
model_name='image',
name='url',
field=api.models.fields.URLTextField(blank=True, help_text='The actual URL to the media file.', max_length=1000, null=True, 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.
0060_fill_out_help_text
0061_convert_varchar_to_text
5 changes: 5 additions & 0 deletions api/latest_migrations/django_structlog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# This file is autogenerated by makemigrations.
# 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.

0 comments on commit 8bc9fe8

Please sign in to comment.