Skip to content

Commit

Permalink
Fix typo in the AbstractBaseModel
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurswag committed Apr 24, 2024
1 parent 762b660 commit a00d456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/core/base_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class AbstractBaseModel(models.Model):
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
created_at = models.DateTimeField(auto_now_add=True, verbose_name=_("Created at"))
updated_at = models.DateTimeField(auto_now=True, verbose_name=_("UpdatedÒ at"))
updated_at = models.DateTimeField(auto_now=True, verbose_name=_("Updated at"))
is_published = models.BooleanField(_("published"), default=False)

class Meta:
Expand Down

0 comments on commit a00d456

Please sign in to comment.