Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dropping tables

How can I drop tables most easily from GAE datastore?

like image 662
pcjuzer Avatar asked Mar 24 '26 01:03

pcjuzer


1 Answers

The datastore is schemaless, and doesn't have tables. Instead, each entity has a kind name, which is simply a string that distinguishes that entity from other kinds. If you want to delete all the records of a kind, you can use the Datastore Admin tool to do it, as documented here. Note that doing so will use your app's quota, the same as deleting them yourself - but it will likely be more efficient and faster than a solution you devise yourself.

like image 73
Nick Johnson Avatar answered Mar 26 '26 17:03

Nick Johnson