Jesse O'Neill-Oine
unread,Jan 27, 2009, 2:32:36 PM1/27/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Autobase
I'm seeing some weird behavior after upgrading to autobase 0.8. I
have some very basic migrations that modify some column sizes that
were working in 0.7, but after upgrading don't seem to be working.
Here's an example migration:
changeSet(id:'UpdateClinicNPIColumnSize', author:'Jesse') {
preConditions(onFail:"CONTINUE") {
columnExists(tableName:"clinic", columnName:"npi")
}
modifyColumn(tableName:"clinic") {
column(name:"npi", type:"varchar(10)")
}
}
After running the migration I go check the clinic.npi column and it's
still varchar(255) instead of varchar(10)
Any ideas what could be causing this? I downgraded to 0.7 and
verified that it is working as expected there. I'm not seeing any
errors on startup.
Thanks,
Jesse