Skip to content
This repository has been archived by the owner on Feb 21, 2022. It is now read-only.

Commit

Permalink
fix(entities): add app label for entity models
Browse files Browse the repository at this point in the history
  • Loading branch information
jarosevcik committed Sep 27, 2021
1 parent 6060aec commit 05ce5f0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions zoo/entities/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@


class Group(models.Model):
class Meta:
app_label = "zoo.entities"

product_owner = models.CharField(max_length=100)
project_owner = models.CharField(max_length=100)
maintainers = pg_fields.ArrayField(
Expand All @@ -18,6 +21,9 @@ class Group(models.Model):


class Link(models.Model):
class Meta:
app_label = "zoo.entities"

name = models.CharField(max_length=32)
icon = models.CharField(
max_length=16,
Expand Down

0 comments on commit 05ce5f0

Please sign in to comment.