私はRailsで書かれたAPIをPhoenix Frameworkを使ってElixirに書き直しています。Ectoを使ってRails ActiveRecord datetimeフィールドを読み書きする方法は?
メインのウェブサイトはRailsを使用しており、引き続きRailsを使用します。しかし、私はAPIにElixirを使用したい。
私のElixir APIプロジェクトからcreated_at
フィールドを読み取ることができる必要があります。
defmodule Example.Recipe do
use Ecto.Schema
schema "recipes" do
field :name, :string
field :description, :string
field :slug, :string
field :created_at ???datetime?
end
end
は、どのように私は私のエリクサーのAPIから適切created_at
とupdated_at
フィールドを読むことができますか?
エクトはEcto.DateTime
を使用していますが、それは互換性がありますか?