schema-level comments are not supported (when only @level0type and @level0name parameters are specified)
like
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'schema description' , @level0type=N'SCHEMA',@level0name=N'SchemaName'
Actually, all parameters of sys.sp_addextendedproperty are optional (= NULL) except @name, but it's reasonable to ignore calls with no @level0type and @level0name...
I'll try to provide a patch, I have updated version already.
schema-level comments are not supported (when only @level0type and @level0name parameters are specified)
like
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'schema description' , @level0type=N'SCHEMA',@level0name=N'SchemaName'
Actually, all parameters of sys.sp_addextendedproperty are optional (= NULL) except @name, but it's reasonable to ignore calls with no @level0type and @level0name...
I'll try to provide a patch, I have updated version already.