Explorar el Código

Plugin: Extend tag to more characters

Sven Velt hace 10 años
padre
commit
b0f4563919
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      plugin/models.py

+ 1 - 1
plugin/models.py

@@ -3,7 +3,7 @@ from django.db import models
 ##############################################################################
 
 class PluginMemory(models.Model):
-	tag = models.CharField(max_length=10)
+	tag = models.CharField(max_length=255)
 	maxid = models.IntegerField(default=0)
 
 	def __unicode__(self):