Hi,
I am trying to figure out how to clean a table of all records. I understand silverstripe does version control and for that reason it won't delete the records but it will make them not active. What I am looking to do is completely wipe the DataObject, meaning no versions no nothing. Is this possible with silverstripe framework or do I have to do a custom DELETE FROM query? Also if I have a DataObject called Player and I do DELETE FROM Player, will this somehow create a problem? Is there a second table somewhere that depends on the records in this one? In order to completely wipe DataObject Player, do I have to delete more than one table?
Not sure if this would be relevant, but I need to continue adding new records after the table has been wiped, so I'm not trying to destroy it.