- Timestamp:
- Jun 8, 2010, 1:04:08 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/Publication.groovy
r518 r540 47 47 48 48 class Publication implements Serializable { 49 String title 50 String pubMedID 51 String DOI 52 String authorsList 53 String comments 49 54 50 String title 51 String pubMedID 52 String DOI 53 String authorsList 54 String comments 55 56 static constraints = { 57 pubMedID(nullable:true,blank:true) 58 DOI(nullable:true,blank:true) 59 authorsList(nullable:true,blank:true) 60 comments(nullable:true,blank:true) 61 } 55 static constraints = { 56 pubMedID(nullable: true, blank: true) 57 DOI(nullable: true, blank: true) 58 authorsList(nullable: true, blank: true) 59 comments(nullable: true, blank: true) 60 } 62 61 }
Note: See TracChangeset
for help on using the changeset viewer.