Does anyone know how edit a field with type 'Date' in the appengine data store viewer in production? It seems like it maps to an int field and I tried putting in the number of milliseconds since epoch but that didnt work.
+1
A:
If a value is existing and you try to change it (like in your case), it shouldn't be a problem. The Date is internally stored as Python datetime.datetime object
pranny
2010-07-09 05:55:48
what if the field doesn't have a value yet?
aloo
2010-07-09 06:27:18
There is not solution for this, at the moment. It has to be done programatically. What i do, is to use remote api shell and change the value i want. Its kinda convenient and fast
pranny
2010-08-06 07:17:33
A:
I would like to recommend using AppWrench for such cases. It provides full editing support for data types and is much better then built in data store viewer.
Regards, Pavel
Null Pointer
2010-10-14 08:25:33