How to empty Core Data database of data?

What is the simplest way to completely empty contents of Core Data database and start like a new database with the same data model as emptied database?

I'd not bother with a clean out. Just repeat the original empty DB create/write with blank tables before adding data.

NSPersistentStoreCoordinator has a method call destroyPersistentStore...
How to empty Core Data database of data?
 
 
Q