add verbose_name to schema model

This commit is contained in:
Cayo Puigdefabregas 2024-03-20 11:40:55 +01:00
parent ae6928a2ae
commit 1d4596b267
1 changed files with 4 additions and 4 deletions

View File

@ -487,11 +487,11 @@ class DID(models.Model):
class Schemas(models.Model):
type = models.CharField(max_length=250)
file_schema = models.CharField(max_length=250)
file_schema = models.CharField(_('Schema'), max_length=250)
data = models.TextField()
created_at = models.DateTimeField(auto_now=True)
_name = models.TextField(null=True, db_column='name')
_description = models.CharField(max_length=250, null=True, db_column='description')
created_at = models.DateTimeField(_("Created at"), auto_now=True)
_name = models.TextField(_("Name"), null=True, db_column='name')
_description = models.CharField(_("Descriptions"), max_length=250, null=True, db_column='description')
template_description = models.TextField(null=True)
@property