I want to create an index on a table in a schema as follows:
create index [ad_util_GeneralPurposeTree-IX_Node_ParentId] on [ad_util_GeneralPurposeTree].[Node](ParentId);
But this line causes Insight.Database.Schema.SchemaParsingException to be thrown with the message: Cannot determine the type of the SQL script.
When i comment out this line all works ok.
How can I create an index using Insight.Database.Schema?