9 lines
397 B
Python
9 lines
397 B
Python
|
from django.db import models
|
||
|
|
||
|
# Create your models here.
|
||
|
|
||
|
class Payment(models.Model):
|
||
|
description = models.CharField("Payment description", max_length=128)
|
||
|
amount = models.DecimalField("Payment amount", max_digits=15, decimal_places=2)
|
||
|
date = models.DateTimeField("Date of payment", auto_now_add=True)
|
||
|
repayment = models.DateTimeField("Date of repayment", default=None, null=True)
|