aboutsummaryrefslogtreecommitdiffstats
path: root/account/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'account/models.py')
-rw-r--r--account/models.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/account/models.py b/account/models.py
new file mode 100644
index 0000000..a3c2b0a
--- /dev/null
+++ b/account/models.py
@@ -0,0 +1,12 @@
+# -*- coding: utf-8 -*-
+#
+# app 'account' models
+# registration, login, etc.
+#
+
+from django.db import models
+from django.contrib.auth.models import User
+
+class UserProfile(models.Model):
+ user = models.OneToOneField(User)
+