/tests/regressiontests/admin_scripts/app_with_import/models.py
https://code.google.com/p/mango-py/ · Python · 7 lines · 4 code · 1 blank · 2 comment · 0 complexity · c60737b1e916c6cdce88da913c615b1d MD5 · raw file
- from django.contrib.comments.models import Comment
- from django.db import models
- # Regression for #13368. This is an example of a model
- # that imports a class that has an abstract base class.
- class CommentScore(models.Model):
- comment = models.OneToOneField(Comment, primary_key=True)