blob: 9f1a8638eb43ade029a99890c2c6cacc0881f93f [file] [log] [blame]
Siobhan Tullyd3515752013-06-21 16:34:53 -04001import os
2from django.db import models
3from core.models import PlCoreBase
4
5# Create your models here.
6
7class Project(PlCoreBase):
8 name = models.CharField(max_length=200, unique=True, help_text="Name of Project")
9
10 def __unicode__(self): return u'%s' % (self.name)
11