aboutsummaryrefslogtreecommitdiffstats
path: root/tests/records/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/records/models.py')
-rw-r--r--tests/records/models.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/records/models.py b/tests/records/models.py
new file mode 100644
index 00000000..76954807
--- /dev/null
+++ b/tests/records/models.py
@@ -0,0 +1,6 @@
+from django.db import models
+
+
+class Record(models.Model):
+ account = models.ForeignKey('accounts.Account', blank=True, null=True)
+ owner = models.ForeignKey('users.User', blank=True, null=True)