django2/demo/migration/models.py

7 lines
261 B
Python

from django.db import models
# Create your models here.
class Product(models.Model):
title = models.CharField(max_length=120)
content= models.TextField(blank=True, null=True)
price = models.DecimalField(max_digits=15,decimal_places=2,default=99.99)