DEBSOURCES
Skip Quicknav
sources / python-django / 1.4.5-1%2Bdeb7u16 / tests / regressiontests / initial_sql_regress / models.py
12345678910
""" Regression tests for initial SQL insertion. """ from django.db import models class Simple(models.Model): name = models.CharField(max_length = 50)