Skip to content

Commit

Permalink
set boolean value
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandunn committed Feb 13, 2019
1 parent 84fbccb commit 56c91dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion grails-app/migrations/changelog-2_3_1.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ databaseChangeLog = {
}
}
addColumn(tableName: "organism"){
column(name:"obsolete",type:"boolean",value:false,nullable:true)
column(name:"obsolete",type:"BOOLEAN",defaultValueBoolean:false)
}
}
}
1 change: 1 addition & 0 deletions grails-app/migrations/changelog.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ databaseChangeLog = {
include file: 'changelog-2_0_7.groovy'
include file: 'changelog-2_0_8.groovy'
include file: 'changelog-2_0_9.groovy'
include file: 'changelog-2_3_1.groovy'
}

0 comments on commit 56c91dc

Please sign in to comment.