我想使用Postgres存储一个带有Ecto的浮点值数组。
我使用Ecto与Phoenix Framework和Elixir。
我使用Ecto与Phoenix Framework和Elixir。
我将如何定义我的模型和迁移?
我没有尝试太多,除了搜索网页,没有找到任何有用的东西:-(
我确实尝试使用如下模式定义一个模型:
schema "my_model" do field :my_array,:array timestamps end
这给了一个错误“无效或未知类型:字段的数组:my_array”
我在Ecto.Schema的原始类型列表中找到了答案:
原文链接:https://www.f2er.com/postgresql/193008.html答案是定义类似如下:
schema "my_model" do field :my_array,{:array,:float} timestamps end