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

Commit 05ce5f0

Browse files
committed
fix(entities): add app label for entity models
1 parent 6060aec commit 05ce5f0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

zoo/entities/models.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88

99
class Group(models.Model):
10+
class Meta:
11+
app_label = "zoo.entities"
12+
1013
product_owner = models.CharField(max_length=100)
1114
project_owner = models.CharField(max_length=100)
1215
maintainers = pg_fields.ArrayField(
@@ -18,6 +21,9 @@ class Group(models.Model):
1821

1922

2023
class Link(models.Model):
24+
class Meta:
25+
app_label = "zoo.entities"
26+
2127
name = models.CharField(max_length=32)
2228
icon = models.CharField(
2329
max_length=16,

0 commit comments

Comments
 (0)