Skip to content

Commit

Permalink
Merge pull request #4 from MohmdFo/main
Browse files Browse the repository at this point in the history
refactor(Attachment): change db table name to sage_ticket_attachment
  • Loading branch information
sepehr-akbarzadeh authored Dec 4, 2024
2 parents 1d290d2 + aeaaec1 commit 487557a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django_sage_ticket"
version = "0.1.0"
version = "0.1.2"
description = "A Django-based ticketing system"
authors = ["Radin Ghaheremani <[email protected]>","Sepehr Akbarzadeh <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion sage_ticket/models/attachment.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Attachment(TimeStampMixin):
class Meta:
verbose_name = _("Attachment")
verbose_name_plural = _("Attachments")
db_table = "sage_attachment"
db_table = "sage_ticket_attachment"

def __repr__(self):
return f"<Attachment(id={self.id}, name={self.name}"
Expand Down

0 comments on commit 487557a

Please sign in to comment.