Editing a text field in the AppStation Datastore Viewer

Does anyone know how to edit a field of type “Text” in an application to view the application data warehouse during production?

+5
source share
2 answers

This is not possible in the Datastore Viewer in the admin console.

This can be done in an interactive console with some code:

from google.appengine.ext import db
my_object = db.get('my_object_key')
my_object.my_text_property = 'The text I want to set'
db.put(my_object)

You can also write a handler that does the same.

+4
source

Sorry, editing the Text field is not possible. Only "String" can be edited.

+3
source

All Articles