public CreateIndexStatement GenerateCreateIndexStatement(Index index, QuoteType quoteType = QuoteType.NotQuoted)
 {
     return(ScriptFactory.CreateIndex(ScriptFactory.Identifier(index.Name, quoteType), false, index.IsUnique, index.IsClustered));
 }