fwbrasil / activate

Abandoned: Pluggable persistence in Scala
GNU Lesser General Public License v2.1
299 stars 46 forks source link

Cannot change column database type #48

Closed felipeko closed 11 years ago

felipeko commented 11 years ago

Hi, i'm trying to change the column type on the database. The docs says to use a customColumn, like this: _.customColumn[String]("attribute1", "CLOB")

But i cannot do it directly, so i tried using rename column (and then i would rename it back): table[Person].renameColumn("name", _.customColumn[String]("_name","text") ) But although the column name is altered the type is not.