Changeset 974 for trunk/grails-app/domain
- Timestamp:
- Oct 21, 2010, 4:51:13 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/Study.groovy
r967 r974 16 16 } 17 17 18 SecUser owner 18 SecUser owner // The owner of the study. A new study is automatically owned by its creator. 19 19 String title // The title of the study 20 20 String code // currently used as the external study ID, e.g. to reference a study in a SAM module … … 22 22 Date lastUpdated 23 23 Date startDate 24 24 List subjects 25 25 List events 26 26 List samplingEvents … … 54 54 // Workaround for bug http://jira.codehaus.org/browse/GRAILS-6754 55 55 templateTextFields type: 'text' 56 owner column:"studyowner" 57 title column:"studytitle" 58 code column:"studycode" 59 subjects column:"studysubjects" 60 events column:"studyevents" 61 samplingEvents column:"studysamplingevents" 62 eventGroups column:"studyeventgroups" 63 samples column:"studysamples" 64 assays column:"studyassays" 65 56 owner column: "studyowner" 57 title column: "studytitle" 58 code column: "studycode" 59 subjects column: "studysubjects" 60 events column: "studyevents" 61 samplingEvents column: "studysamplingevents" 62 eventGroups column: "studyeventgroups" 63 samples column: "studysamples" 64 assays column: "studyassays" 66 65 } 67 66 … … 96 95 type: TemplateFieldType.BOOLEAN, 97 96 comment: 'Determines whether this study is published (accessible for the study readers and, if the study is public, for anonymous users). A study can only be published if it meets certain quality criteria, which will be checked upon save.', 98 required: true)97 required: false) 99 98 ] 100 99
Note: See TracChangeset
for help on using the changeset viewer.