mirror of https://github.com/halo-dev/halo
fixed #373
parent
076e666677
commit
9015f30c51
|
@ -48,7 +48,7 @@ public class BasePost extends BaseEntity {
|
||||||
/**
|
/**
|
||||||
* Original content,not format.
|
* Original content,not format.
|
||||||
*/
|
*/
|
||||||
@Column(name = "original_content", columnDefinition = "text not null")
|
@Column(name = "original_content", columnDefinition = "longtext not null")
|
||||||
private String originalContent;
|
private String originalContent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -56,7 +56,7 @@ public class BasePost extends BaseEntity {
|
||||||
*
|
*
|
||||||
* @see run.halo.app.utils.MarkdownUtils#renderHtml(String)
|
* @see run.halo.app.utils.MarkdownUtils#renderHtml(String)
|
||||||
*/
|
*/
|
||||||
@Column(name = "format_content", columnDefinition = "text not null")
|
@Column(name = "format_content", columnDefinition = "longtext not null")
|
||||||
private String formatContent;
|
private String formatContent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue