##// END OF EJS Templates
Properly order attachments across one post
neko259 -
r1759:eaa1de72 default
parent child Browse files
Show More
@@ -42,6 +42,10 b' class AttachmentManager(models.Manager):'
42 class Attachment(models.Model):
42 class Attachment(models.Model):
43 objects = AttachmentManager()
43 objects = AttachmentManager()
44
44
45 class Meta:
46 app_label = 'boards'
47 ordering = ('id',)
48
45 file = models.FileField(upload_to=get_upload_filename, null=True)
49 file = models.FileField(upload_to=get_upload_filename, null=True)
46 mimetype = models.CharField(max_length=50, null=True)
50 mimetype = models.CharField(max_length=50, null=True)
47 hash = models.CharField(max_length=36, null=True)
51 hash = models.CharField(max_length=36, null=True)
General Comments 0
You need to be logged in to leave comments. Login now