I've got two MS apps which are exactly the same, except for maybe ten
lines in the code (locale differences). This isn't to stay within
quota limits, but rather because it was much easier to write like
that. I've been just using a sort of template approach for deployment
which worked very well.

However, I want to merge both apps to HR and use subdomains for
different locales. Both apps have the exact same db structure (with
one top ancestor model), but different data.

db A
|
+ main
   |
   - model
   |
   - model

db B
|
+ main
   |
   - model
   |
   - model

What I'd like is to keep the same structure, and just change the key
names for the top ancestors (to match the locale), before I copy the
data to the new app. To get this structure.

db
|
+ main A
   |
   - model
   |
   - model
|
+ main B
   |
   - model
   |
   - model

I'm already using the subdomain approach for locales for another app,
so that works well and is the easy part in this merge.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to