Skip to content

Instantly share code, notes, and snippets.

@nullset2
Created July 27, 2017 06:19
Show Gist options
  • Save nullset2/a9bb59aa01a265c8177a9ed0aceef7d0 to your computer and use it in GitHub Desktop.
Save nullset2/a9bb59aa01a265c8177a9ed0aceef7d0 to your computer and use it in GitHub Desktop.
package blog
class Tag {
String name
Date dateCreated
Date lastUpdated
static belongsTo = Post
static hasMany = [posts: Post]
static constraints = {
name maxSize: 30, blank: false, unique: true
}
String toString(){
name
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment