mirror of
https://github.com/TrentSPalmer/trentpalmerdotorg.git
synced 2024-10-31 18:18:45 -07:00
20 lines
473 B
Python
20 lines
473 B
Python
# Generated by Django 3.1.6 on 2021-02-23 00:03
|
|
|
|
from django.db import migrations, models
|
|
import tp.storage_backends
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('audio', '0005_feed_image'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='feed',
|
|
name='image',
|
|
field=models.ImageField(blank=True, null=True, storage=tp.storage_backends.PublicImageStorage(), upload_to=''),
|
|
),
|
|
]
|