Ticket #11287: models.py

File models.py, 115 bytes (added by QingFeng, 15 years ago)

models

Line 
1from django.db import models
2
3class Model1(models.Model):
4 name = models.CharField(blank=True, max_length=100)
5
Back to Top