我在 Google App Engine Datastore 中给出了字符串类型的日期字段。因此,我无法按任何顺序对日期字段进行排序。
Fname = db.StringProperty()
Lname = db.StringProperty()
Date = db.db.StringProperty() #Format: DD/MM/YYYY
现在我无法更改日期字段,因为我在数据库中有大约 800 条数据记录。
请帮我解决这个问题..
我在 Google App Engine Datastore 中给出了字符串类型的日期字段。因此,我无法按任何顺序对日期字段进行排序。
Fname = db.StringProperty()
Lname = db.StringProperty()
Date = db.db.StringProperty() #Format: DD/MM/YYYY
现在我无法更改日期字段,因为我在数据库中有大约 800 条数据记录。
请帮我解决这个问题..