mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 09:36:49 +03:00
Add migration for generic relations Tag model.
This commit is contained in:
parent
481ae69df3
commit
59fcbc6dd5
|
@ -57,6 +57,7 @@ def pytest_configure(config):
|
||||||
'rest_framework',
|
'rest_framework',
|
||||||
'rest_framework.authtoken',
|
'rest_framework.authtoken',
|
||||||
'tests.authentication',
|
'tests.authentication',
|
||||||
|
'tests.generic_relations',
|
||||||
'tests.importable',
|
'tests.importable',
|
||||||
'tests',
|
'tests',
|
||||||
),
|
),
|
||||||
|
|
0
tests/generic_relations/__init__.py
Normal file
0
tests/generic_relations/__init__.py
Normal file
36
tests/generic_relations/migrations/0001_initial.py
Normal file
36
tests/generic_relations/migrations/0001_initial.py
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
initial = True
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('contenttypes', '0002_remove_content_type_name'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='Bookmark',
|
||||||
|
fields=[
|
||||||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
|
('url', models.URLField()),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='Note',
|
||||||
|
fields=[
|
||||||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
|
('text', models.TextField()),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='Tag',
|
||||||
|
fields=[
|
||||||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
|
('tag', models.SlugField()),
|
||||||
|
('object_id', models.PositiveIntegerField()),
|
||||||
|
('content_type', models.ForeignKey(on_delete=models.CASCADE, to='contenttypes.ContentType')),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
]
|
0
tests/generic_relations/migrations/__init__.py
Normal file
0
tests/generic_relations/migrations/__init__.py
Normal file
46
tests/generic_relations/models.py
Normal file
46
tests/generic_relations/models.py
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.contrib.contenttypes.fields import (
|
||||||
|
GenericForeignKey, GenericRelation
|
||||||
|
)
|
||||||
|
from django.contrib.contenttypes.models import ContentType
|
||||||
|
from django.db import models
|
||||||
|
from django.utils.encoding import python_2_unicode_compatible
|
||||||
|
|
||||||
|
|
||||||
|
@python_2_unicode_compatible
|
||||||
|
class Tag(models.Model):
|
||||||
|
"""
|
||||||
|
Tags have a descriptive slug, and are attached to an arbitrary object.
|
||||||
|
"""
|
||||||
|
tag = models.SlugField()
|
||||||
|
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
|
||||||
|
object_id = models.PositiveIntegerField()
|
||||||
|
tagged_item = GenericForeignKey('content_type', 'object_id')
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.tag
|
||||||
|
|
||||||
|
|
||||||
|
@python_2_unicode_compatible
|
||||||
|
class Bookmark(models.Model):
|
||||||
|
"""
|
||||||
|
A URL bookmark that may have multiple tags attached.
|
||||||
|
"""
|
||||||
|
url = models.URLField()
|
||||||
|
tags = GenericRelation(Tag)
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return 'Bookmark: %s' % self.url
|
||||||
|
|
||||||
|
|
||||||
|
@python_2_unicode_compatible
|
||||||
|
class Note(models.Model):
|
||||||
|
"""
|
||||||
|
A textual note that may have multiple tags attached.
|
||||||
|
"""
|
||||||
|
text = models.TextField()
|
||||||
|
tags = GenericRelation(Tag)
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return 'Note: %s' % self.text
|
|
@ -1,52 +1,10 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from django.contrib.contenttypes.fields import (
|
|
||||||
GenericForeignKey, GenericRelation
|
|
||||||
)
|
|
||||||
from django.contrib.contenttypes.models import ContentType
|
|
||||||
from django.db import models
|
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
from django.utils.encoding import python_2_unicode_compatible
|
|
||||||
|
|
||||||
from rest_framework import serializers
|
from rest_framework import serializers
|
||||||
|
|
||||||
|
from .models import Bookmark, Note, Tag
|
||||||
@python_2_unicode_compatible
|
|
||||||
class Tag(models.Model):
|
|
||||||
"""
|
|
||||||
Tags have a descriptive slug, and are attached to an arbitrary object.
|
|
||||||
"""
|
|
||||||
tag = models.SlugField()
|
|
||||||
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
|
|
||||||
object_id = models.PositiveIntegerField()
|
|
||||||
tagged_item = GenericForeignKey('content_type', 'object_id')
|
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return self.tag
|
|
||||||
|
|
||||||
|
|
||||||
@python_2_unicode_compatible
|
|
||||||
class Bookmark(models.Model):
|
|
||||||
"""
|
|
||||||
A URL bookmark that may have multiple tags attached.
|
|
||||||
"""
|
|
||||||
url = models.URLField()
|
|
||||||
tags = GenericRelation(Tag)
|
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return 'Bookmark: %s' % self.url
|
|
||||||
|
|
||||||
|
|
||||||
@python_2_unicode_compatible
|
|
||||||
class Note(models.Model):
|
|
||||||
"""
|
|
||||||
A textual note that may have multiple tags attached.
|
|
||||||
"""
|
|
||||||
text = models.TextField()
|
|
||||||
tags = GenericRelation(Tag)
|
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return 'Note: %s' % self.text
|
|
||||||
|
|
||||||
|
|
||||||
class TestGenericRelations(TestCase):
|
class TestGenericRelations(TestCase):
|
Loading…
Reference in New Issue
Block a user