I defined two models:
class Server(models.Model):
owners = models.ManyToManyField(\'Person\')
class Person(models.Model):
name = models.CharField(max_le
As a tip for the future, look into South, a very useful utility for applying your model changes to the database without having to create a new database each time you've changed the model(s).
With it you can easily: python manage.py migrate app_name
and South will write your model changes.
The documentation is pretty straightforward.