Adding migrations for v6 upgrades.

Updating and testing migrations.
This commit is contained in:
Morten Christensen
2012-12-26 14:44:42 -01:00
parent e867f89ba2
commit dbce36b7a5
41 changed files with 4072 additions and 19 deletions

View File

@@ -92,6 +92,11 @@ namespace Umbraco.Core.Persistence.SqlSyntax
return result > 0;
}
public override bool SupportsClustered()
{
return false;
}
protected override string FormatIdentity(ColumnDefinition column)
{
return column.IsIdentity ? AutoIncrementDefinition : string.Empty;