Skip to content

Commit

Permalink
Merge pull request #100 from hycomsa/99
Browse files Browse the repository at this point in the history
99: Initialization error on MySQL: 'error in your SQL syntax' #99
  • Loading branch information
kulasekp authored Feb 12, 2020
2 parents 0da27dc + 3fc0e7c commit 0b19050
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
@XmlAccessorType(XmlAccessType.FIELD)
public class GroovyConfigurationContent extends ConfigurationContent {

@Column(columnDefinition = "LONGVARCHAR(2000000)")
@Column(length = 2000000)
@Lob
@JsonView(View.General.class)
@Basic(fetch = FetchType.EAGER)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
@XmlAccessorType(XmlAccessType.FIELD)
public class XmlConfigurationContent extends ConfigurationContent {

@Column(columnDefinition = "LONGVARCHAR(2000000)")
@Column(length = 2000000)
@Lob
@Basic(fetch = FetchType.EAGER)
@JsonView(View.General.class)
Expand Down

0 comments on commit 0b19050

Please sign in to comment.