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.
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.