I am trying to find if a constraint name is 'system generated' or 'manually given at the time of creation'.
MS SQL Server has a column 'is_system_named' in sys.key_constraints:
1 = Name was generated by system.
0 = Name was supplied by the user.
I tried to find similar in information_schema.table_constraints. Could not find it.
Use case is basically while migrating the databases, if manually named constraints are present then it will be easy to verify.