Markdown property should store to text not varchar.

This commit is contained in:
Jeremy Pyne
2014-09-04 16:05:34 -04:00
parent 5d37eaf993
commit 24724ca6e8

View File

@@ -3,7 +3,7 @@ using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
[PropertyEditor(Constants.PropertyEditors.MarkdownEditorAlias, "Markdown editor", "markdowneditor")]
[PropertyEditor(Constants.PropertyEditors.MarkdownEditorAlias, "Markdown editor", "markdowneditor", ValueType = "TEXT")]
public class MarkdownPropertyEditor : PropertyEditor
{
protected override PreValueEditor CreatePreValueEditor()