models.py 155 B

123456789
  1. """
  2. Regression tests for initial SQL insertion.
  3. """
  4. from django.db import models
  5. class Simple(models.Model):
  6. name = models.CharField(max_length=50)