Skip to content

Commit

Permalink
refs #135 updated AuditLogEvent template to set ‘text’ type for large…
Browse files Browse the repository at this point in the history
… column support
  • Loading branch information
robertoschwald committed Apr 12, 2017
1 parent ea340d9 commit f39ff46
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ class ${auditClassName} implements Serializable {

oldValue(nullable: true)
newValue(nullable: true)

// for large column support (as in < 1.0.6 plugin versions), use
// oldValue(nullable: true, maxSize: 65534)
// newValue(nullable: true, maxSize: 65534)
}

static mapping = {
Expand All @@ -80,6 +76,10 @@ class ${auditClassName} implements Serializable {
autoImport false

version false

// for large column support (as in < 1.0.6 plugin versions), use this
// oldValue type: 'text'
// newValue type: 'text'
}

/**
Expand Down

0 comments on commit f39ff46

Please sign in to comment.