1
0
mirror of https://github.com/django/django.git synced 2025-10-23 21:59:11 +00:00
Files
django/tests/model_package/models/publication.py
Tim Graham 2333c9662b Fixed #14007 -- Added model discovery in models module without the need to specify app_label.
Thanks mark@ and Aramgutang for work on the patch.
2013-07-16 19:32:30 -04:00

6 lines
108 B
Python

from django.db import models
class Publication(models.Model):
title = models.CharField(max_length=30)