Adding some of the database changes that is part of v6 - just renaming a few columns so far.

Refactoring the installer, which is not working 100% yet.
This commit is contained in:
Morten Christensen
2012-11-27 15:07:53 -01:00
parent d98bd97c5f
commit 6edea4a8ee
9 changed files with 89 additions and 70 deletions

View File

@@ -43,6 +43,11 @@ namespace Umbraco.Core.Models.Rdbms
[Constraint(Default = "0")]
public bool AllowAtRoot { get; set; }
[Column("masterContentType")]
[Constraint(Default = "0")]
[NullSetting(NullSetting = NullSettings.Null)]
public int MasterContentType { get; set; }//TODO Delete once "masterContentType" has been removed from the Core
[ResultColumn]
public NodeDto NodeDto { get; set; }
}