Skip to content

Commit

Permalink
refactor(Attachment): change db table name to sage_ticket_attachment
Browse files Browse the repository at this point in the history
  • Loading branch information
MohmdFo committed Dec 4, 2024
1 parent 4c73c2c commit aeaaec1
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 aeaaec1

Please sign in to comment.