Skip to content

Commit

Permalink
Merge 56c91dc into 79a5332
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandunn committed Feb 13, 2019
2 parents 79a5332 + 56c91dc commit 573e61e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions grails-app/migrations/changelog-2_3_1.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
databaseChangeLog = {

changeSet(author: "nathandunn", id: "1459788030178-1") {

preConditions(onFail: 'MARK_RAN', onError: "HALT") {
not {
columnExists(columnName: "obsolete", tableName: "organism")
}
}
addColumn(tableName: "organism"){
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 573e61e

Please sign in to comment.