25 lines
941 B
Python
25 lines
941 B
Python
# Generated by Django 4.2.7 on 2023-11-27 17:28
|
|
|
|
import BaseModels.base_models
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ServicesApp', '0004_alter_blockpluginpresentation_picture_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='blockpluginpresentation',
|
|
name='but1_icon',
|
|
field=models.FileField(blank=True, null=True, upload_to='uploads/', validators=[BaseModels.base_models.validate_file_extension], verbose_name='Пиктограмма для кнопки 1'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='blockpluginpresentation',
|
|
name='but2_icon',
|
|
field=models.FileField(blank=True, null=True, upload_to='uploads/', validators=[BaseModels.base_models.validate_file_extension], verbose_name='Пиктограмма для кнопки 2'),
|
|
),
|
|
]
|