paltman-archive / nashvegas

Another database migration script runner for Django projects.
http://paltman.github.com/nashvegas
MIT License
97 stars 18 forks source link

Add ability to execute python scripts in addition to sql scripts #4

Closed paltman closed 14 years ago

paltman commented 15 years ago

Nashvegas currently only will execute sql scripts against the database connection.

Adding support to execute arbitrary python scripts as well gives the tool a lot more flexibility. For example, doing one time data manipulation across a number of models, can be a lot easier to express in python using Models, rather than a bunch of SELECT and UPDATE and INSERT statements cobbled together in SQL.