models: reversed the default ordering

This commit is contained in:
Benjamin Dauvergne 2012-12-10 15:50:12 +01:00
parent 9c89d98874
commit 89acf125c9
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class Journal(models.Model):
message = models.CharField(max_length=128, db_index=True)
class Meta:
ordering = ('time', 'id')
ordering = ('-id',)
verbose_name = _('Journal entry')
verbose_name_plural = _('Journal entries')