PageRenderTime 73ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/tests/modeltests/model_package/models/publication.py

https://code.google.com/p/mango-py/
Python | 7 lines | 5 code | 2 blank | 0 comment | 0 complexity | 052dace6d553303b158bc12b54249150 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. from django.db import models
  2. class Publication(models.Model):
  3. title = models.CharField(max_length=30)
  4. class Meta:
  5. app_label = 'model_package'