Files
mediacms/files/migrations/0003_remote_urls.py
Markos Gogoulos 28f16cbd83 S3 support - draft
2021-07-26 19:09:03 +03:00

24 lines
614 B
Python

# Generated by Django 3.1.8 on 2021-07-26 16:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('files', '0002_auto_20201201_0712'),
]
operations = [
migrations.AddField(
model_name='encoding',
name='remote_urls',
field=models.JSONField(default=dict, help_text='This will keep any url'),
),
migrations.AddField(
model_name='media',
name='remote_urls',
field=models.JSONField(default=dict, help_text='This will keep any url'),
),
]