Refine results
database (4)
python (3)
evolution (3)
schema (3)
postgresql (2)
schema-evolution (2)
sql (1)
sqlite (1)
postgres (1)
postgresql_schema (1)
schema_migration (1)
tools (1)
When you run ./manage.py syncdb, Django will look for any new models that have been defined, and add a database table to represent those new models. However, if you make a change to an existing model, ./manage.py syncdb will not make any changes to
Metrics updated 07 Oct 08
The pgmigrate tool is developed for managing changes in database structure between a project members. It does so by managing so called 'patches'. Small pieces of SQL or Python code which modifies database schema. So far it supports only PostgreSQL. Starting from 1.2.0 can be easily integrated with Django to solve schema migration issue.
Metrics updated 04 Oct 08
Django External Schema Evolution Branch Django, via the command ./manage syncdb, can automatically build a database schema based on your applications models.py file. However, after you've done this once, it leaves you with two unpleasant follow-up
Metrics updated 07 Oct 08
This is the definetely new name of old dbmigrations project - renamed because already exists a project with that name. NOW WITH DJANGO SUPPORTDjango support includes a new driver, a command-line option for manage.py, a pluggable application and its