我正在创建一个包含Interval
字段的Slick Postresql表,我想将其表示为Duration
case class Object(id: String, aproxDuration: Duration)
class Objects(tag: Tag) extends Table[Object](tag, "OBJECTS"){
def id = column[String]("id", O.PrimaryKey)
def expectedDuration = column[Duration]("expected_duration")
def * = (id, expectedDuration) <> (Object.tupled, Object.unapply)
}
为此,我安装了slick-pg
扩展名并创建了一个扩展ExPostgresProfile, PgDate2Support, PgRangeSupport
的配置文件,但是我不确定为什么找不到{{ 1}}
答案 0 :(得分:0)
_countof