I just started "Hello World" app on GAE and Django-nonrel. I saw a couple of differences between using pure Django on relational databases and Django-nonrel. The most sadly is South migration system inability in non-relational databases. Is it exist some way to migrate models to database with GAE? If not, what strategy of models developing you would recommend in this case?
Google App Engine and Django-nonrel: db migration
773 Views Asked by I159 At
1
There are 1 best solutions below
Related Questions in GOOGLE-APP-ENGINE
- AngularJS, Google App Engine and URLrewrite
- Optimizing for Social Leaderboards
- Getting entity with a join table GAE
- Custom exception message from google endpoints exception
- Unable to deploy an application module on AppEngine
- How to use CachedRowSet in Google App Engine?
- How can I create a docker image from the current system?
- Google datastore multiple values for the same property
- Google Cloud Storage sort directory by name
- Adding custom domain for Google App Engine WordPress site
- Arguments to Endpoints method change order
- Could someone bring Google OAuth2 for Cloud DNS via Rest to light?
- DNS_PROBE_FINISHED_NXDOMAIN on Google App Engine website
- GAE python - client_secrets.json 'File not found' - app.yaml error?
- Images not working in Google App Engine email
Related Questions in DJANGO-MODELS
- Django invalid literal for int() with base 10:
- How to translate this raw query to Django ORM
- How to add methods to customised search_fields in Django admin.ModelAdmin
- Django - how replace values in a model nested in a list of lists
- How to retrieve an object or a particular field from context object in view?
- How to make a single form for two related models?
- How to create object from QueryDict in django?
- Permission denied on trying to write file
- How to reverse query objects for multiple levels in django?
- Get element of table by instance of foreign key.
- Modify db object field from .py file in django
- How to filter objects for count annotation in Django?
- How to count users in JOINed models?
- "DatabaseError: duplicate column name" - bug with custom model's abstract class in django test
- Django models: managing transactions when commit_manually is deprecated
Related Questions in MIGRATION
- NoMethodError: undefined method `add_attachment' for #<AddImageCloumnToPost:0x58 ba1b8>
- Not getting Downloaded - "Azure DocumentDB Data Migration Tool"
- migrate one ldap server to another - questions
- Scope attribute migration from Struts1 to Struts2
- Is there any way to rearrange the table's fields in Rails migrations?
- Unable to cast object of type 'System.Web.Hosting.SimpleWorkerRequest' to type 'System.Web.Hosting.IIS7WorkerRequest'
- handling really long migrations in Heroku
- Migrating source code from PVCS to SVN
- I am new to ubuntu.i have installed phpstorm and try to run composer but it's not running
- Magento Fatal error: Call to a member function setData()
- Add comment to SQL table
- Django migration having no effect, on postgres table
- Rollback and Start Over/Pending Migration
- How Django finds all the migrations
- Join table comment in rails 4 migration
Related Questions in DJANGO-NONREL
- Set Per-Model Permissions in Django
- Django: Race condition occurs in this block?
- Django-nonrel is not working with django 1.7
- How should embeddedmodelfields appear in django-nonrel admin?
- NoReverseMatch at /admin/auth/user using mongoDB engine causes inability to edit auth.users
- Cannot query using IDs - Django MongoDB Engine
- Which django apps are directly usable or easily adaptable for django-nonrel?
- Unit testing task queues in AppEngine
- django signal on GAE
- Django signals on GAE with django-nonrel
- django non rel and google app engine: remote api issue
- Users interfering with each others instances
- How to configure settings.py in Django for MongoDB?
- Error in django-nonrel settings TypeError: __init__() takes exactly 1 argument (2 given)
- Running django manage.py commands via appengine's cron.yaml
Related Questions in NON-RELATIONAL-DATABASE
- How Iterate or remove MongoDb array list item using pymongo?
- What is the best practice to store weekdays in MongoDB?
- What is the recommended equivalent of cascaded delete in MongoDB for N:M relationships?
- InfluxDB mixing agregation function with non-aggregat fields/values
- Storing time-series data, relational or non?
- In a non-relational DBMS (BigTable in AppEngine), how should I set up the entities for a mass messaging type-of system?
- How to have Yii generate drop-down list from known users?
- Modeling a NoSQL database (DynamoDB) for different sorting queries
- AWS NoSQL or AWS RDS, what are the good ways to store social graph?
- Google App Engine and Django-nonrel: db migration
- Why would I want to use a non-relational database?
- How to filter documents in mongodb based on an interval?
- How to find Metadata URL of IMS Database to connect from Java when I have host name, port and Datastore name?
- hooking couchdb up to a production server vs. using an intermediary relational db
- Nonrelational Databases for C++
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
South's main concern is handling issues regarding changes in relational db schemas. This is not required in a non-rel db, where smart coding practices and simple scripts can handle migrations as an online operation.
See also:
Keep in mind that many Django field types are supported by djangoappengine. This means you can use
dumpdataon your sql project to save your data to files and later useloaddatain your new project to load it into your models.If you need further processing, you can create a small script that copies data from the old models to the new models.