summaryrefslogtreecommitdiff
path: root/tests/shell/models.py
blob: 85b40bf2058e0fe99bf5f122a41ee422239591fc (plain)
1
2
3
4
5
6
7
8
9
from django.db import models


class Marker(models.Model):
    pass


class Phone(models.Model):
    name = models.CharField(max_length=50)