デフォルトのフィールド名は:inserted_at
です。 および:updated_at
ただし、キーワードリストを渡して、独自のフィールド名とマージすることはできます
schema "users" do
field :name, :string
field :email, :string
timestamps([{:inserted_at,:created_at}])
end
デフォルトのフィールド名は:inserted_at
です。 および:updated_at
ただし、キーワードリストを渡して、独自のフィールド名とマージすることはできます
schema "users" do
field :name, :string
field :email, :string
timestamps([{:inserted_at,:created_at}])
end