refactor python package structure
This commit is contained in:
parent
9eff769622
commit
8c9671602b
19 changed files with 56 additions and 49 deletions
|
@ -1,7 +1,7 @@
|
|||
# Generated by Django 5.1.5 on 2025-01-29 08:34
|
||||
|
||||
import django.db.models.deletion
|
||||
import services.models
|
||||
import hub.services.models
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
|
@ -67,7 +67,7 @@ class Migration(migrations.Migration):
|
|||
blank=True,
|
||||
null=True,
|
||||
upload_to="cloud_provider_logos/",
|
||||
validators=[services.models.validate_image_size],
|
||||
validators=[hub.services.models.validate_image_size],
|
||||
),
|
||||
),
|
||||
],
|
||||
|
@ -190,7 +190,7 @@ class Migration(migrations.Migration):
|
|||
blank=True,
|
||||
null=True,
|
||||
upload_to="service_logos/",
|
||||
validators=[services.models.validate_image_size],
|
||||
validators=[hub.services.models.validate_image_size],
|
||||
),
|
||||
),
|
||||
("features", models.TextField()),
|
||||
|
@ -293,7 +293,7 @@ class Migration(migrations.Migration):
|
|||
blank=True,
|
||||
null=True,
|
||||
upload_to="partner_logos/",
|
||||
validators=[services.models.validate_image_size],
|
||||
validators=[hub.services.models.validate_image_size],
|
||||
),
|
||||
),
|
||||
("website", models.URLField(blank=True)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue