postgresql データベースを slick とインターフェースしたいのですが、私の問題は、次のようなテーブルをどのように表現するかです。
Column | Type | Modifiers | Storage | Description
--------------+-----------------------------+-----------+----------+-------------
id | bigint | not null | plain |
version | integer | not null | plain |
tstamp | timestamp without time zone | not null | plain |
tags | hstore | | extended |
nodes | bigint[] | | extended |
誰かが交換する方法についてのヒントを持っている場合は? の
object Ways extends Table[(?, Int, Int, java.sql.Timestamp, ?, ?, ?)]("WAYS") {
def id = column[?]("id", O.PrimaryKey)
def version = column[Int]("version")
def user_id = column[Int]("user_id")
def tstamp = column[java.sql.Timestamp]("tstamp")
def changeset_id = column[?]("changeset_id")
def tags = column[?]("tags")
def nodes = column[?]("nodes")
}
解決策になりArray[String]
ますか?