Macarse
Macarse

Reputation: 93133

Removing Entity from GAE

I am doing some tests with GAE/J.

Some days ago I created a model and I have persisted some instances twig-persist. Now that class doesn't exist any more and I want to remove that instances.

Can I do it from the Data Viewer or I can only remove it from the code?

Upvotes: 1

Views: 201

Answers (1)

Greg
Greg

Reputation: 2609

The Datastore Viewer (on the GAE dashboard) will let you do it, but it's a bit painful if you have a lot of entities. You can only delete them twenty at a time.

The alternative is to create a new model with the same name and create a handler that deletes them via code.

Upvotes: 3

Related Questions