PageRenderTime 25ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/tests/regressiontests/initial_sql_regress/models.py

https://code.google.com/p/mango-py/
Python | 9 lines | 3 code | 3 blank | 3 comment | 0 complexity | 26ae5ced100ed15e936e92f9b2e21e02 MD5 | raw file
Possible License(s): BSD-3-Clause
  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)