mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Refs #23919 -- Removed python_2_unicode_compatible decorator usage
This commit is contained in:
parent
d7b9aaa366
commit
f3c43ad1fd
160 changed files with 23 additions and 757 deletions
|
@ -3,7 +3,6 @@ Regression tests for proper working of ForeignKey(null=True).
|
|||
"""
|
||||
|
||||
from django.db import models
|
||||
from django.utils.encoding import python_2_unicode_compatible
|
||||
|
||||
|
||||
class SystemDetails(models.Model):
|
||||
|
@ -20,7 +19,6 @@ class Forum(models.Model):
|
|||
forum_name = models.CharField(max_length=32)
|
||||
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class Post(models.Model):
|
||||
forum = models.ForeignKey(Forum, models.SET_NULL, null=True)
|
||||
title = models.CharField(max_length=32)
|
||||
|
@ -29,7 +27,6 @@ class Post(models.Model):
|
|||
return self.title
|
||||
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class Comment(models.Model):
|
||||
post = models.ForeignKey(Post, models.SET_NULL, null=True)
|
||||
comment_text = models.CharField(max_length=250)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue