Adds ability to extract index details from databases using sql syntax provider.

This commit is contained in:
Shannon
2014-03-12 17:17:52 +11:00
parent ff21379547
commit 3a92c26a7f
6 changed files with 63 additions and 5 deletions

View File

@@ -212,6 +212,8 @@ namespace Umbraco.Core.Persistence.SqlSyntax
return new List<Tuple<string, string, string>>();
}
public abstract IEnumerable<Tuple<string, string, string, bool>> GetDefinedIndexes(Database db);
public virtual bool DoesTableExist(Database db, string tableName)
{
return false;