project/kiwipycon/proceedings/models.py
changeset 84 d01c62c2a628
child 87 1ec579a679e4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project/kiwipycon/proceedings/models.py	Thu Jan 14 15:54:34 2010 +0530
@@ -0,0 +1,14 @@
+# -*- coding: utf-8 -*-
+from __future__ import absolute_import
+
+from django.db import models
+from django.contrib.auth.models import User
+
+
+class Paper(models.Model):
+    """Data model for storing proceedings paper.
+    """
+
+    title = models.CharField(max_length=200)
+    abstract = models.TextField()
+    body = models.TextField()