diff --git a/.github/sql-fixtures/fixtures.sql b/.github/sql-fixtures/fixtures.sql index 71abcb5b7..bd54cef7f 100644 Binary files a/.github/sql-fixtures/fixtures.sql and b/.github/sql-fixtures/fixtures.sql differ diff --git a/python/apps/taiga/src/taiga/attachments/migrations/0001_initial.py b/python/apps/taiga/src/taiga/attachments/migrations/0001_initial.py index f46dde87d..f2378bdcc 100644 --- a/python/apps/taiga/src/taiga/attachments/migrations/0001_initial.py +++ b/python/apps/taiga/src/taiga/attachments/migrations/0001_initial.py @@ -65,7 +65,7 @@ class Migration(migrations.Migration): on_delete=django.db.models.deletion.RESTRICT, related_name="attachments", to="storage.storagedobject", - verbose_name="storage object", + verbose_name="storaged object", ), ), ( diff --git a/python/apps/taiga/src/taiga/attachments/models.py b/python/apps/taiga/src/taiga/attachments/models.py index f4c7848da..9262c16e0 100644 --- a/python/apps/taiga/src/taiga/attachments/models.py +++ b/python/apps/taiga/src/taiga/attachments/models.py @@ -17,7 +17,7 @@ class Attachment(models.BaseModel, CreatedMetaInfoMixin): blank=False, on_delete=models.RESTRICT, related_name="attachments", - verbose_name="storaged_object", + verbose_name="storaged object", ) name = models.TextField( null=False,