Tagged Questions
0
votes
1answer
161 views
Google App Engine Java Aplication: DB Migration
I follow this steps from API Google App Engine: https://developers.google.com/appengine/docs/adminconsole/datastoreadmin#Copying_Entities_to_Another_Application
With Python SDK, I deploy the ...
1
vote
1answer
937 views
Request a simple alembic working example for Auto Generating Migrations
I installed alembic 0.3.4, sqlalchemy, SQLite version 3.7.4, and upgraded SQLAlchemy 0.6.4 to SQLAlchemy 0.7 or greater from my ubuntu.
I followed the instruction: ...
0
votes
1answer
48 views
migrating data from tomcat .dbx files
I want to migrate data from an old Tomcat/Jetty website to a new one which runs on Python & Django. Ideally I would like to populate the new website by directly reading the data from the old ...
1
vote
1answer
110 views
Migrate a legacy DB to Django, with image files
I have a SQL dump of a legacy DB, and a folder with images, and those are referenced by some rows of certain tables, and I need to migrate that data to the new Django models. The specific problem is ...
2
votes
2answers
280 views
Data Migrations and AppEngine
I've done a lot of development in rails, and am looking into developing projects using python & app engine.
From the demo project and what I've seen so far, I've got a question/concern about app ...
5
votes
1answer
634 views
South django table already exists
I'm experiencing the same problem as with: django - "manage.py test" fails "table already exists"
The schemamigration / migration worked fine (although did have some problems that required me to ...
11
votes
3answers
2k views
Is it worth using sqlalchemy-migrate?
I have a web application using sqlalchemy (within Pylons). I need to effiently change the schema to be able to change the production version at least on a daily basis, maybe more, without loosing the ...
15
votes
4answers
2k views
How to efficiently manage frequent schema changes using sqlalchemy?
I'm programming a web application using sqlalchemy. Everything was smooth during the first phase of development when the site was not in production. I could easily change the database schema by simply ...
9
votes
4answers
2k views
What is the best approach to change primary keys in an existing Django app?
I have an application which is in BETA mode. The model of this app has some classes with an explicit primary_key. As a consequence Django use the fields and doesn't create an id automatically.
class ...
24
votes
7answers
4k views
What is your favorite solution for managing database migrations in django?
I quite like Rails' database migration management system. It is not 100% perfect, but it does the trick. Django does not ship with such a database migration system (yet?) but there are a number of ...
1
vote
4answers
564 views
How to update turbogears application production database
I am having a postgres production database in production (which contains a lot of Data). now I need to modify the model of the tg-app to add couple of new tables to the database.
How do i do this? I ...