-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixes migrations for layers and maps #472
Conversation
I'm still getting an error when running migrate, though different column and model this time: django.db.utils.DatabaseError: column "geographic_bounding_box" of relation "layers_layer" does not exist |
does it make sense to collapse all the migrations into a single cumulative migration for each app, i.e. pre-dev -> dev? |
I second Ian's idea. On Fri, Oct 26, 2012 at 1:14 PM, Ian Schneider [email protected]:
|
Fwiw, in mainline dev, the migrations are just not used anymore, they are Im also +1 on 'squashing' these down into a single migration from 1.2final On Fri, Oct 26, 2012 at 10:31 AM, Ariel Núñez [email protected]:
|
Jeff, just to clarify, I consider Ian's approach of one migration per app On Fri, Oct 26, 2012 at 1:37 PM, Jeffrey Johnson
|
Migration per app seems like the best solution to me too. Jeff - I can't find what the --all switch is supposed to do to syncdb, it does not appear in the django documentation. |
Thats what I mean. One per app, but one jump from 1.2 to 2.0 instead of On Fri, Oct 26, 2012 at 10:43 AM, Ariel Núñez [email protected]:
|
Its just bypasses the migrations and does a normal syncdb as if you didnt On Fri, Oct 26, 2012 at 10:47 AM, Matthew Hanson
|
But that did not help Jenkins succeed in running the tests, right? Do you On Fri, Oct 26, 2012 at 1:47 PM, Jeffrey Johnson
|
I dont, something very strange up with jenkins. @ischneider and I both On Fri, Oct 26, 2012 at 10:49 AM, Ariel Núñez [email protected]:
|
I could start working on one 1.2=>2.0 migration per app, if that's still the plan. Just let me know or create an issue for it. |
Im guessing that once @tomkralidis is finished with the modifications to On Tue, Nov 27, 2012 at 8:11 AM, Christian Spanring <
|
Hi all |
Removes duplicates in layer migrations and adds a layer migration dependency to maps migrations. closes #471