Overview
Developer tool to be used in development environments only to manage DB scripts for Appian applications
Key Features & Functionality
One of our developers has noted that system versioned tables are not supported correctly. In “SMT Wipe Database Script (Maria DB)” in “INSERT INTO TEMP_TABLE_DATE” there is this condition:
IF(TABLE_TYPE = 'BASE TABLE', 'TABLE', 'VIEW')
so he had to changed it to :
IF(TABLE_TYPE = 'SYSTEM VERSIONED' OR TABLE_TYPE = 'BASE TABLE', 'TABLE', TABLE_TYPE)
Could you please include this in the next version?
Thank you