Michael Hall has proposed merging lp:~mhall119/loco-directory/606922 into 
lp:loco-directory.

Requested reviews:
  loco-directory-dev (loco-directory-dev)
Related bugs:
  #606922 migrate is trying to create the venues relationshipt before the 
venues tables are created
  https://bugs.launchpad.net/bugs/606922


South runs migrations on apps in the order the appear in INSTALLED_APPS.  Since 
events had been before venues, initial migrations (0001) try to create the 
foreign key from events to venues before the venues tables existed.  Swapping 
the app's positions in INSTALLED_APPS fixes the problem.
-- 
https://code.launchpad.net/~mhall119/loco-directory/606922/+merge/30213
Your team loco-directory-dev is requested to review the proposed merge of 
lp:~mhall119/loco-directory/606922 into lp:loco-directory.
=== modified file 'loco_directory/settings.py'
--- loco_directory/settings.py	2010-07-01 06:26:59 +0000
+++ loco_directory/settings.py	2010-07-18 16:44:42 +0000
@@ -112,8 +112,8 @@
     'django.contrib.admin',
     'common',
     'teams',
+    'venues',
     'events',
-    'venues',
     'django_openid_auth',
     'south',
 )

_______________________________________________
Mailing list: https://launchpad.net/~loco-directory-dev
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~loco-directory-dev
More help   : https://help.launchpad.net/ListHelp

Reply via email to