aboutsummaryrefslogtreecommitdiffstats
path: root/tests/records
diff options
context:
space:
mode:
Diffstat (limited to 'tests/records')
-rw-r--r--tests/records/__init__.py0
-rw-r--r--tests/records/models.py6
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/records/__init__.py b/tests/records/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/tests/records/__init__.py
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)