10 lines
237 B
Python
10 lines
237 B
Python
from django.db import models
|
|
|
|
|
|
class Sale(models.Model):
|
|
|
|
customer = models.CharField(max_length=100)
|
|
date = models.DateField("Date")
|
|
phone = models.CharField(max_length=13)
|
|
description = models.CharField(max_length=255)
|