2022-06-27 21:17:06 +02:00
|
|
|
# Generated by Django 3.2.13 on 2022-06-27 19:15
|
|
|
|
|
|
|
|
|
|
import django.core.serializers.json
|
|
|
|
|
from django.db import migrations, models
|
2026-01-24 19:54:33 -03:00
|
|
|
import funquail_api.audio.models
|
2022-06-27 21:17:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
|
('audio', '0003_channel_rss_url'),
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
|
migrations.AlterField(
|
|
|
|
|
model_name='channel',
|
|
|
|
|
name='metadata',
|
2026-01-24 19:54:33 -03:00
|
|
|
field=models.JSONField(blank=True, default=funquail_api.audio.models.empty_dict, encoder=django.core.serializers.json.DjangoJSONEncoder, max_length=50000),
|
2022-06-27 21:17:06 +02:00
|
|
|
),
|
|
|
|
|
]
|