Add first model.

Portnov [2008-06-06 17:11:10]
Add first model.
Filename
mgmt/models.py
diff --git a/mgmt/models.py b/mgmt/models.py
index 71a8362..f00e8b5 100644
--- a/mgmt/models.py
+++ b/mgmt/models.py
@@ -1,3 +1,5 @@
 from django.db import models

-# Create your models here.
+class Object(models.Model):
+  type = models.CharField(max_length=10)
+  oid = models.IntegerField()
ViewGit