fix typo
This commit is contained in:
parent
4de817bd75
commit
f5a80dd0a5
1 changed files with 4 additions and 4 deletions
|
|
@ -182,15 +182,15 @@ class TemplateTransaction(Transaction):
|
|||
|
||||
template = models.ForeignKey(
|
||||
TransactionTemplate,
|
||||
null=True
|
||||
on_delete=models.SET_NULL
|
||||
null=True,
|
||||
on_delete=models.SET_NULL,
|
||||
)
|
||||
category = models.ForeignKey(
|
||||
TemplateCategory,
|
||||
on_delete=models.PROTECT
|
||||
on_delete=models.PROTECT,
|
||||
)
|
||||
name = models.CharField(
|
||||
max_length=255
|
||||
max_length=255,
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue