I can't use south and I don't have pgAdmin but I need to add new field to the model at the end of the model. I need to be:
new_field = models.CharField(max_length=200, blank=True, null=True)
I have ssh access and have psql user defined so I need syntax to add that field to the model db table. Does ALTER TABLE store_products ADD COLUMN description text;
do the job? How to set max_length 200, blank and null to be true? postgresql 9.1, django 1.6.