Suppose a check constraint (involving multiple columns) with the "not for replication" option was added to a database table (e.g. "alter table table_name add constraint constraint_name check not for replication (constraint_expression)")
I found syntax for dropping "not for replication" from a column, but not for an existing check constraint as mentioned above.
Is there a way to remove the "not for replication" from the check constraint other than dropping/recreating the check constraint?