• You can DENY ALTER on the table but in addition to preventing changes to the triggers on that table it also prevent them from adding columns to the table, modifying any constraints, enabling/disabling triggers, etc.

    USE YourDatabaseName;

    GO

    DENY ALTER ON dbo.YourTableName TO TheDatabaseUserName;

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato