我想用Ecto使用Postgres存儲浮點數值的數組。 我正在使用Ecto與Phoenix Framework和Elixir。如何用Ecto使用Postgres存儲數組
我該如何定義我的模型和遷移?
我還沒有嘗試過了,除了在網上搜索,這沒有找到:-(
有用的東西我也嘗試定義與這樣的架構模型:
schema "my_model" do
field :my_array, :array
timestamps
end
這給了一個錯誤「無效或未知類型:現場數組:my_array」
謝謝你,你會怎麼寫的遷移? – neildaemond
這裏是一個生成器的例子:'mix phx.gen.schema Blog.Post blog_posts tags:array:string' – Sash