Projects tagged ‘database’ and ‘django’


[4 total ]
2

Django Evolution

 
Primary Language: Python Licensed as: BSD-ish License

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 ... [More] the database. This is where Django Evolution fits in. Django Evolution is an extension to Django that allows you to track changes in your models over time, and to update the database to reflect those changes. [Less]

Metrics updated about 1 hour ago

1

Newsmemory

 
Primary Language: Python Licensed as: GNU General Public License 2.0

Import, store and retrieve news from the web. - use provided websites importers or build your own very easily - newsmemory will parse the web and store the articles periodically - a web interface lets you browse the news or search the database - flag a newsitem, the others users will see it as flagged

Metrics updated about 20 hours ago

1

pgmigrate

 
Primary Language: Python Licensed as: Apache License, 2.0

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 08 Jul 08

1

deseb

   
Primary Language: Python Licensed as: Python Software Foundation License

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 ... [More] options if you ever make any changes to your model structure: 1. destroy your existing schema (along with all your data) and let ./manage syncdb rebuild it for you 2. manage your own schema upgrades by writing your own SQL Project deseb aims to fill this void by providing s third option: 3. generate schema upgrades via the command: ./manage evolvedb [Less]

Metrics updated about 4 hours ago