@@ -42,9 +42,9 @@ class Meta:
4242
4343 social_profiles = models .URLField (default = None , null = True )
4444
45- about = models .TextField (max_length = 500 , default = False , null = False )
46- short_story = models .TextField (max_length = 500 , default = None , null = True )
47- speciality = models .TextField (max_length = 500 , default = None , null = True )
45+ about = models .TextField (default = False , null = False )
46+ short_story = models .TextField (default = None , null = True )
47+ speciality = models .TextField (default = None , null = True )
4848
4949 # deletion check for the company should not be present as on delete
5050 # of the user auth the company will be deleted as well as there is cascade
@@ -96,16 +96,10 @@ class Meta:
9696
9797 # These fields will be displayed as a part of "description" field and the
9898 # body of the job
99- job_responsibilities = models .TextField (
100- default = "No Job Responsibilities provided" , max_length = 1000
101- )
102- skills_required = models .TextField (
103- default = "No skills details provided" , max_length = 1000
104- )
105- education_or_certifications = models .TextField (
106- default = "No Education details provided" , max_length = 1000
107- )
108- about = models .TextField (default = "No description provided" , max_length = 500 )
99+ job_responsibilities = models .TextField (default = "No Job Responsibilities provided" )
100+ skills_required = models .TextField (default = "No skills details provided" )
101+ education_or_certifications = models .TextField (default = "No Education details provided" )
102+ about = models .TextField (default = "No description provided" )
109103
110104
111105class ContactMessage (models .Model ):
0 commit comments