Statistics
| Revision:

root / web-presentation / trunk / eneraptor-web-presentation / grails-app / domain / com / eneraptor / presentation / Content.groovy @ 86

History | View | Annotate | Download (238 Bytes)

1
package com.eneraptor.presentation
2

    
3
class Content {
4
        
5
        String contentId
6
        String contentHTML
7

    
8
    static constraints = {
9
                
10
                contentId(blank:false,unique:true)
11
                
12
    }
13
        
14
        static mapping = {
15
                contentHTML type: 'text'
16
        }
17
        
18
}