I need to create a model Class with three columns: network, graduation, and position(s).
class UserProfile(models.Model):
network = models.ForeignKey(Network)
graduation = models.IntegerField(blank=True, null=True, choices=choices)
# position = ?
How would I enter in the position column to allow for multiple positions (for example: artist, architect, graphic artist). Note that these positions will not have any related information in their own table.
Probably the best way is to go ahead and have a
Positionmodel (likely using fixtures to populate the rows):