Added created field to AddonLog

This commit is contained in:
Dave Dash 2010-07-09 17:03:35 -07:00
Родитель a629cdea69
Коммит 4214ed81cf
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -100,6 +100,7 @@ class AddonLog(models.Model):
name1 = models.CharField(max_length=255, default='', blank=True)
name2 = models.CharField(max_length=255, default='', blank=True)
notes = models.TextField(blank=True)
created = models.DateTimeField(auto_now_add=True)
class Meta:
db_table = 'addonlogs'