summaryrefslogtreecommitdiff
path: root/tests/initial_sql_regress/models.py
blob: 146a7ea6910656c8529b8edacf52aef84c25daa9 (plain)
1
2
3
4
5
6
7
8
9
"""
Regression tests for initial SQL insertion.
"""

from django.db import models


class Simple(models.Model):
    name = models.CharField(max_length=50)