Is there some way to make dbMaintain run a repeatable script every time, even if the file has not changed? I have a scenario where we have a script creating a view using select * create or replace view 100_orders_view as select * from 100_orders WHERE version = (SELECT version FROM 200_versions); Whenever there is a change in the columns of the table 100_orders, we need the script that creates or replaces the view to be run, but since there are noe changes to the script file (checksum) it will not...