Liberty: add a LibertyArtifact model

This commit is contained in:
Benjamin Dauvergne 2010-06-01 14:05:19 +02:00
parent 270075e5bc
commit 7b5f026ea1
1 changed files with 4 additions and 1 deletions

View File

@ -104,4 +104,7 @@ class LibertyAssertions(models.Model):
assertion = models.TextField(editable = False)
emission_time = models.DateTimeField(auto_now = True, editable = False)
class LibertyArtifact(models.Model):
"""Store an artifact"""
artifact = models.CharField(max_length = 40, editable = False)
content = models.TextField(editable = False)