In my model I have a property:

created = db.DateTimeProperty(required=True, auto_now_add=True)

When an object of this type is created in the datastore, the created property is automatically populated.

When I use the bulk loader tool with a table which does not have this field, the field is not automatically populated when I upload to AppEngine, at which time new objects are created.

How can I make it set the created time on new objects uploaded from the bulk loader?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Add something like the following to bulkloader.yaml:

- property: created
  external_name: created
  import_transform: "lambda x: datetime.datetime.utcnow()"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.