Is there an elegant way to wipe all data in the database (removing every row from every table) without destroying the architecture and having to remove/read constraints?
I could just delete data from each table but this seems tedious. I've seen plenty of solutions for full on SQL implementations that make use of a stored procedure but obviously that functionality is not available to me. It's likely I won't be making this function available to end users of the product but it may be enabled for in-house testing purposes. As I stated I can do this manually so put this one down to curiosity