Adding language column to cmsContentVersion

This commit is contained in:
Morten Christensen
2012-11-26 09:02:49 -01:00
parent 78b05eb44c
commit e07fc8c2ba
8 changed files with 88 additions and 6 deletions

View File

@@ -25,6 +25,11 @@ namespace Umbraco.Core.Models.Rdbms
[Constraint(Default = "getdate()")]
public DateTime VersionDate { get; set; }
[Column("LanguageLocale")]
[Length(10)]
[NullSetting(NullSetting = NullSettings.Null)]
public string Language { get; set; }
[ResultColumn]
public ContentDto ContentDto { get; set; }
}