Changeset 83 for trunk/grails-app/domain
- Timestamp:
- Jan 11, 2010, 2:44:03 PM (13 years ago)
- Location:
- trunk/grails-app/domain/dbnp/transcriptomics/magetab/idf
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/transcriptomics/magetab/idf/Factor.groovy
r70 r83 7 7 8 8 static constraints = { 9 10 type(nullable: true) 11 9 name(nullable:true,blank:true) 10 type(nullable: true, blank:true) 12 11 } 13 12 } -
trunk/grails-app/domain/dbnp/transcriptomics/magetab/idf/InvestigationDesign.groovy
r70 r83 7 7 String dateOfExperiment 8 8 String publicReleaseDate 9 String sdrf_file; 10 11 static mapping = { 12 experimentDescription type: 'text' 13 } 9 14 10 15 static hasMany = [ … … 27 32 dateOfExperiment(nullable:true,blank:true) 28 33 publicReleaseDate(nullable:true,blank:true) 34 sdrf_file(nullable:true,blank:true) 29 35 } 30 36 } -
trunk/grails-app/domain/dbnp/transcriptomics/magetab/idf/MAGEProtocol.groovy
r70 r83 16 16 ] 17 17 18 static mapping = { 19 description type: 'text' 20 } 21 18 22 static constraints = { 19 23 type(nullable: true,blank:true) -
trunk/grails-app/domain/dbnp/transcriptomics/magetab/idf/Publication.groovy
r70 r83 20 20 DOI(nullable:true,blank:true) 21 21 authors_list(nullable:true,blank:true) 22 status_term_source_ref(nullable:true,blank:true) 22 23 } 23 24 }
Note: See TracChangeset
for help on using the changeset viewer.