View Source Cloak.Ecto.NaiveDateTime (cloak_ecto v1.3.0)
An Ecto.Type to encrypt NaiveDateTime fields.
Migration
The database field must be of type :binary.
add :encrypted_field, :binaryUsage
Define an Encrypted.NaiveDateTime module in your project:
defmodule MyApp.Encrypted.NaiveDateTime do
use Cloak.Ecto.NaiveDateTime, vault: MyApp.Vault
endThen, define the type of your desired fields:
schema "table_name" do
field :encrypted_field, MyApp.Encrypted.NaiveDateTime
end