@@ -10,7 +10,7 @@ class Project(models.Model):
1010 # REQUIRED
1111 title = models .CharField (max_length = 255 , blank = False , null = False )
1212 institution = models .CharField (max_length = 255 , blank = False , null = False )
13- description = models .TextField (blank = False , null = False )
13+ description = models .TextField (max_length = 255 , blank = False , null = False )
1414 positions = models .JSONField (default = list )
1515 image_url = models .ImageField (upload_to = "projects/" , blank = False , null = False )
1616
@@ -22,11 +22,11 @@ class Project(models.Model):
2222 images = models .JSONField (default = list , blank = True )
2323 interest_tags = ArrayField (models .CharField (max_length = 225 ), blank = True , null = True )
2424 skill_tags = ArrayField (models .CharField (max_length = 225 ), blank = True , null = True )
25- full_description = models .CharField (max_length = 1000 , blank = True , null = True )
25+ full_description = models .TextField (max_length = 2500 , blank = True , null = True )
2626 email = models .EmailField (unique = True , blank = True , null = True )
2727 other_contact = models .CharField (max_length = 225 , blank = True , null = True )
2828 updates = ArrayField (models .CharField (max_length = 540 ), blank = True , null = True )
29- wanted_description = models .CharField (max_length = 540 , blank = True , null = True )
29+ wanted_description = models .TextField (max_length = 2500 , blank = True , null = True )
3030
3131 members = models .ManyToManyField (
3232 'userauth.User' ,
0 commit comments