Skip to content

Commit

Permalink
remove unused models
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Jan 14, 2025
1 parent 07525fe commit 1b04e9c
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tests/model_fields_/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,17 +94,8 @@ class ArrayEnumModel(models.Model):


# EmbeddedModelField
class DecimalModel(models.Model):
decimal = models.DecimalField(max_digits=9, decimal_places=2)


class DecimalKey(models.Model):
decimal = models.DecimalField(max_digits=9, decimal_places=2, primary_key=True)


class EmbeddedModelFieldModel(models.Model):
simple = EmbeddedModelField("EmbeddedModel", null=True, blank=True)
decimal_parent = EmbeddedModelField(DecimalKey, null=True, blank=True)


class EmbeddedModel(models.Model):
Expand Down

0 comments on commit 1b04e9c

Please sign in to comment.