Moving database definition models, so they are shared and can be used in the sql syntax provider.

This commit is contained in:
Morten Christensen
2012-12-07 13:48:38 -01:00
parent f9403f2bc6
commit 736fbc6659
42 changed files with 76 additions and 75 deletions

View File

@@ -0,0 +1,8 @@
namespace Umbraco.Core.Persistence.DatabaseModelDefinitions
{
public class IndexColumnDefinition
{
public virtual string Name { get; set; }
public virtual Direction Direction { get; set; }
}
}