In my Django app, models.py, I have this field that I have just recently added.
Class Client
user = models.ForeignKey(User)
I want to add this field in mysql to an existing table. Problem is I don't know the command for dealing with foreign keys. The name of my table that I want to add this column is called tiptop_clients
.