20 lines
416 B
Python
20 lines
416 B
Python
# Generated by Django 2.2.16 on 2022-11-11 18:37
|
|
|
|
from django.db import migrations
|
|
import files_widget.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('files_widget', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='fileicon',
|
|
name='image',
|
|
field=files_widget.fields.ImageField(max_length=200),
|
|
),
|
|
]
|