Skip to content

Commit

Permalink
Add missing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
pehala committed Jun 14, 2024
1 parent 7f682b0 commit b72495b
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 5.0.6 on 2024-06-14 12:47

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("pdf", "0024_alter_pdfrequest_link"),
]

operations = [
migrations.RemoveConstraint(
model_name="pdfrequest",
name="automated_category_present",
),
]
26 changes: 26 additions & 0 deletions tenants/migrations/0004_alter_tenant_icon.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Generated by Django 5.0.6 on 2024-06-14 12:47

import tenants.models
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("tenants", "0003_tenant_icon"),
]

operations = [
migrations.AlterField(
model_name="tenant",
name="icon",
field=models.ImageField(
blank=True,
help_text="Optional Site logo, should be around 50x50 and in PNG format",
null=True,
upload_to="uploads/",
validators=[tenants.models.only_png],
verbose_name="Logo",
),
),
]

0 comments on commit b72495b

Please sign in to comment.