Removed Member.country from model

This commit is contained in:
Alexandre Bourlier
2018-04-10 16:20:28 +02:00
parent a5c159681b
commit 965e06f3aa
3 changed files with 0 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

-1
View File
@@ -8,7 +8,6 @@ class Member(models.Model):
email = models.CharField(max_length=255, default='')
number = models.CharField(max_length=255, default='')
cell = models.ForeignKey("Cell")
country = models.CharField(max_length=255, default='')
skills = models.ManyToManyField("Skill")
projects = models.ManyToManyField("Project")