postgresql – 如何使用Postgres存储数组与Ecto

前端之家收集整理的这篇文章主要介绍了postgresql – 如何使用Postgres存储数组与Ecto前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用Postgres存储一个带有Ecto的浮点值数组。
我使用Ecto与Phoenix Framework和Elixir。

我将如何定义我的模型和迁移?

我没有尝试太多,除了搜索网页,没有找到任何有用的东西:-(

我确实尝试使用如下模式定义一个模型:

schema "my_model" do
    field :my_array,:array

    timestamps
  end

这给了一个错误“无效或未知类型:字段的数组:my_array”

我在Ecto.Schema的原始类型列表中找到了答案:

Ecto.Schema

答案是定义类似如下:

schema "my_model" do
    field :my_array,{:array,:float}

    timestamps
  end
原文链接:https://www.f2er.com/postgresql/193008.html

猜你在找的Postgre SQL相关文章