Commit a0722e51 by Piotr Mitros

Reduced size of key as per Jason Bau. TODO: Check if we need migrations anywhere

parent 36f64c0f
......@@ -41,8 +41,9 @@ class FSExpirations(models.Model):
f.expiration = expiration_time
f.save()
module = models.CharField(max_length=500) # Defines the namespace
filename = models.CharField(max_length=500) # Filename within the namespace
module = models.CharField(max_length=382) # Defines the namespace
filename = models.CharField(max_length=382) # Filename within the namespace
expires = models.BooleanField() # Does it expire?
expiration = models.DateTimeField(db_index = True)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment