Changeset 64 for trunk/grails-app/domain
- Timestamp:
- Dec 15, 2009, 4:37:11 PM (14 years ago)
- Location:
- trunk/grails-app/domain/magetab
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/magetab/idf/InvestigationDesign.groovy
r59 r64 5 5 String title 6 6 String experimentDescription 7 DatedateOfExperiment8 DatepublicReleaseDate7 String dateOfExperiment 8 String publicReleaseDate 9 9 10 10 static hasMany = [ … … 23 23 24 24 static constraints = { 25 title(nullable:true,blank:true) 26 experimentDescription(nullable:true,blank:true) 27 dateOfExperiment(nullable:true,blank:true) 28 publicReleaseDate(nullable:true,blank:true) 25 29 } 26 30 } -
trunk/grails-app/domain/magetab/idf/OntologyTerm.groovy
r59 r64 11 11 static constraints = { 12 12 // termSource(nullable: true) 13 text(nullable:true,blank:true) 14 category(nullable:true,blank:true) 15 accessionNumber(nullable:true,blank:true) 13 16 } 14 17 } -
trunk/grails-app/domain/magetab/idf/Protocol.groovy
r63 r64 10 10 String parameters 11 11 String contact 12 String term_source_ref 12 13 13 14 static hasMany = [ … … 23 24 parameters(nullable:true,blank:true) 24 25 contact(nullable:true,blank:true) 26 term_source_ref(nullable:true,blank:true) 25 27 } 26 28 } -
trunk/grails-app/domain/magetab/idf/Publication.groovy
r63 r64 7 7 String DOI 8 8 OntologyTerm status 9 String status_term_source_ref 10 String authors_list 9 11 10 12 static hasMany = [ … … 17 19 pubMedID(nullable:true,blank:true) 18 20 DOI(nullable:true,blank:true) 21 authors_list(nullable:true,blank:true) 19 22 } 20 23 } -
trunk/grails-app/domain/magetab/sdrf/Normalization.groovy
r58 r64 3 3 class Normalization { 4 4 5 String type; 6 String term_source_ref; 7 5 8 static constraints = { 9 type(nullable:true,blank:true) 10 term_source_ref(nullable:true,blank:true) 6 11 } 7 12 }
Note: See TracChangeset
for help on using the changeset viewer.