HI !
I have an idea for a feature enhancement. (currently using 2025.1.124)
We design many of our database tables with several of the identical fields.
id int(11) NOT NULL AUTO_INCREMENT,
DateUpdated datetime NOT NULL,
IDUpdated int(11) NOT NULL,
VisitorID int(11) NOT NULL,
Delete_Flag bool NOT NULL DEFAULT 0,
Approved_Del_On datetime DEFAULT NULL,
Approved_Del_ByID int(11)
And as well, We create table triggers for insert and update that automatically make an audit trail of changes.
It would be nice to be able to create a table template of those fields, then create a new table from that template. So designers that maybe have several types of standardized data in a table, can have those saved as templates, and this is a shortcut to making more.
I found a way to sort of do this in the designer already, just by naming a table as "template" with that filed structure, and then every table I create, I tell it to copy that object, and then I edit it.
The problem with this is that when duplicating a table, it does not duplicate the triggers as well. Should it ? or is that by design ?