35 lines
891 B
Python
35 lines
891 B
Python
|
# Generated by Django 5.1.5 on 2025-01-27 14:10
|
||
|
|
||
|
import services.models
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("services", "0001_initial"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="cloudprovider",
|
||
|
name="logo",
|
||
|
field=models.ImageField(
|
||
|
blank=True,
|
||
|
null=True,
|
||
|
upload_to="cloud_provider_logos/",
|
||
|
validators=[services.models.validate_image_size],
|
||
|
),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name="service",
|
||
|
name="logo",
|
||
|
field=models.ImageField(
|
||
|
blank=True,
|
||
|
null=True,
|
||
|
upload_to="service_logos/",
|
||
|
validators=[services.models.validate_image_size],
|
||
|
),
|
||
|
),
|
||
|
]
|