Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.28 KB | None | 0 0
  1. package grailsbb
  2.  
  3. class Forum {
  4.    
  5.     Date creationDate = new Date()
  6.     String title
  7.     String description
  8.     Forum parent
  9.    
  10.     static hasMany = [subForums:Forum,threads:Thread,moderators:User]
  11.     static belongsTo = [Forum]
  12.    
  13.     static constraints = {
  14.         parent nullable:true
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement