Developer forum

Forum » Feature requests » Include FormSubmitData in the dropdown list of purgeable database logs

Include FormSubmitData in the dropdown list of purgeable database logs

Nicholai Pedersen
Reply

It is possible to delete data from the 'FormSubmit' table, but not 'FormSubmitData', because it looks like it does not have a date column - and  therefore the system doesn't know what needs to be deleted. Could the table 'FormSubmitData' be added to the dropdown list of purgeable database logs?

This feature request is submitted to us by Suzi from Skabertrang.

BR/ Nicholai from DW Care.

logs.png logs_data.png

Replies

 
Nicolai Pedersen
Reply
This post has been marked as an answer

You can just add the datetime column to table with default value of GETDATE()

 

ALTER TABLE FormSubmitData ADD FormSubmitDataDate DATE DEFAULT GETDATE();

Votes for this answer: 1