Skip to content

Commit

Permalink
Merge pull request #1463 from gtech-mulearn/dev
Browse files Browse the repository at this point in the history
socials issue fixed
  • Loading branch information
adnankattekaden authored Oct 29, 2023
2 parents 01d15fd + da9d462 commit a3e4c78
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions db/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ class Socials(models.Model):
behance = models.CharField(max_length=60, blank=True, null=True)
stackoverflow = models.CharField(max_length=60, blank=True, null=True)
medium = models.CharField(max_length=60, blank=True, null=True)
hackerrank = models.CharField(max_length=60, blank=True, null=True)
created_by = models.ForeignKey(User, on_delete=models.CASCADE, db_column='created_by', related_name='socials_created_by')
updated_by = models.ForeignKey(User, on_delete=models.CASCADE, db_column='updated_by', related_name='socials_updated_by')
created_at = models.DateTimeField(auto_now_add=True)
Expand Down

0 comments on commit a3e4c78

Please sign in to comment.