@@ -104,7 +104,7 @@ def __str__(self):
104
104
105
105
class Dataset (models .Model ):
106
106
bildirectory = models .CharField (max_length = 256 )
107
- title = models .CharField (max_length = 256 )
107
+ title = models .CharField (max_length = 500 )
108
108
socialmedia = models .CharField (max_length = 256 , blank = True )
109
109
subject = models .CharField (max_length = 256 , blank = True )
110
110
subjectscheme = models .CharField (max_length = 256 , blank = True )
@@ -115,7 +115,7 @@ class Dataset(models.Model):
115
115
generalmodality = models .CharField (max_length = 256 , blank = True )
116
116
technique = models .CharField (max_length = 256 , blank = True )
117
117
other = models .CharField (max_length = 256 , blank = True )
118
- abstract = models .CharField (max_length = 1000 )
118
+ abstract = models .CharField (max_length = 3000 )
119
119
methods = models .CharField (max_length = 256 , blank = True )
120
120
technicalinfo = models .CharField (max_length = 256 , blank = True )
121
121
sheet = models .ForeignKey (Sheet , on_delete = models .SET_NULL , blank = True , null = True )
@@ -337,7 +337,7 @@ class Publication(models.Model):
337
337
relatedidentifiertype = models .CharField (max_length = 256 , blank = True )
338
338
pmcid = models .CharField (max_length = 256 , blank = True )
339
339
relationtype = models .CharField (max_length = 256 , blank = True )
340
- citation = models .CharField (max_length = 256 , blank = True )
340
+ citation = models .CharField (max_length = 1500 , blank = True )
341
341
sheet = models .ForeignKey (Sheet , on_delete = models .SET_NULL , blank = True , null = True )
342
342
data_set = models .ForeignKey (Dataset , on_delete = models .SET_NULL , blank = True , null = True )
343
343
0 commit comments