aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests/models.py
blob: c90668cad6927608f0ea04bd41ad87108ac1765c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from django.db import models
# from django.contrib.auth.models import Group


# class CustomUser(models.Model):
#     """
#     A custom user model, which uses a 'through' table for the foreign key
#     """
#     username = models.CharField(max_length=255, unique=True)
#     groups = models.ManyToManyField(
#         to=Group, blank=True, null=True, through='UserGroupMap'
#     )

#     @models.permalink
#     def get_absolute_url(self):
#         return ('custom_user', (), {
#             'pk': self.id
#     })


# class UserGroupMap(models.Model):
#     user = models.ForeignKey(to=CustomUser)
#     group = models.ForeignKey(to=Group)

#     @models.permalink
#     def get_absolute_url(self):
#         return ('user_group_map', (), {
#             'pk': self.id
#         })

class Anchor(models.Model):
    """
    A simple model to use as the target of relationships for other test models.
    """
    text = models.CharField(max_length=100, default='anchor')

    class Meta:
        app_label = 'rest_framework'


class BasicModel(models.Model):
    text = models.CharField(max_length=100)

    class Meta:
        app_label = 'rest_framework'


class ManyToManyModel(models.Model):
    rel = models.ManyToManyField(Anchor)

    class Meta:
        app_label = 'rest_framework'