Generated: Fri 2012-09-28 15:02 CEST
Source file: /Users/martin/Repos/django-frequently/frequently/models.py
Stats: 2 executed, 0 missed, 1 excluded, 7 ignored
"""Models for the ``django-frequently`` application."""from django.db import modelsclass Example(models.Model): """Example model class.""" text = models.TextField(blank=True, null=True)