dodanie nowych modeli
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Jakub K 2024-01-02 22:49:09 +01:00
parent 9e1860faf9
commit 78ee1c6126

View File

@ -78,7 +78,7 @@ class SkillLevels(models.Model):
('E', 'Ekspert'),
]
skill_id = models.ForeignKey(Skill)
skill_id = models.ForeignKey(Skill, on_delete=models.CASCADE)
skill_level = models.CharField(max_length=1, choices=proficiency_choices,)
class CompanyLogo(models.Model):