summaryrefslogtreecommitdiff
path: root/tests/shell/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/models.py')
-rw-r--r--tests/shell/models.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/shell/models.py b/tests/shell/models.py
new file mode 100644
index 0000000000..85b40bf205
--- /dev/null
+++ b/tests/shell/models.py
@@ -0,0 +1,9 @@
+from django.db import models
+
+
+class Marker(models.Model):
+ pass
+
+
+class Phone(models.Model):
+ name = models.CharField(max_length=50)