schema-migration Questions
10
According to the documentation here:
https://docs.djangoproject.com/en/1.8/topics/migrations/ it says:
migrate, which is responsible for applying migrations, as well as unapplying and listing thei...
Faubion asked 1/5, 2015 at 1:4
13
Solved
So about a year ago I started a project and like all new developers I didn't really focus too much on the structure, however now I am further along with Django it has started to appear that my proj...
Cavil asked 3/9, 2014 at 15:36
3
Solved
I'd like to disable user access to my app so that I can perform a schema migration. I've looked into a few possibilities and found possible shortcomings:
Disable datastore writes - I'd rather jus...
Stockdale asked 10/2, 2013 at 13:6
10
Solved
This is an extension to this question: How to move a model between two Django apps (Django 1.7)
I need to move a bunch of models from old_app to new_app. The best answer seems to be Ozan's, but wi...
Diggins asked 2/6, 2015 at 16:5
2
Solved
Our firestore DB based model evolves naturally. Now we would like to update all existing documents to the new (implicit) schema.
Are there any tools supporting that or what are the best practices....
Encarnacion asked 27/11, 2018 at 2:8
8
Solved
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 numb...
Mercantile asked 8/1, 2009 at 22:55
1
Solved
I'm trying to do a schema update using the app/console doctrine:schema:update --force command, but Doctrine fails on the following part:
An exception occurred while executing 'DROP INDEX IDX_E98F2...
Tender asked 2/8, 2013 at 0:41
3
Solved
I made the stupid mistake of creating too many models in the same Django app, now I want to split it into 3 distinct ones. Problem is: there's already data in production in two customers' sit...
Melena asked 16/7, 2012 at 4:36
1
I rewrote a lot of my models, and since I am just running a test server, I do ./manage.py reset myapp to reset the db tables and everything has been working fine.
But I tried to do it this time, ...
Brogan asked 28/12, 2010 at 23:34
3
I've been briefly looking at JPA recently, and I was wondering what the deal is with database schema migrations and staying lined up with the classes you've created.
Is there support in JPA for th...
Postscript asked 12/1, 2010 at 22:1
1
© 2022 - 2025 — McMap. All rights reserved.