Howdy -
Welcome. So far I like the following:
Editors: PyCharm and VIM
OS (Dev) OS X
Tools: Django Debug ToolBar, South
DB: Postgres
I am looking forward to hearing what others are using as well.
Matt
On Mon, Aug 22, 2011 at 3:07 PM, Stephen Jackson
wrote:
> I am new to the world of Django. I
If you want to alter your schema (remove a field from the table, or
remove the entire table), first remove the field from your model, or
remove the entire model. Then make the change in your database.
Or you can look into using 'south' for schema changes. After you spend
a little time learning it
I have one cart running over 17K SKUs that is fast. (save for
generating product variations). It's hosted at Webfaction with a
hosting plan less powerful than yours. Have you checked the basics.
Debug mode off. Caching on. (I am not even using memcached. Just
file.). I am using Postgres.
The Sat
Model methods are custom methods that add custom row level
functionality to your objects.
For example, if your model has a first_name field and a last_name
field, and you wanted to return the full name, your custom model
method could be:
class Person(models.Model):
first_name = models.CharFi
4 matches
Mail list logo