defmodule ShootingEventPhx.Domain.AppSetting do use Ecto.Schema @primary_key {:key, :string, []} @timestamps_opts [inserted_at: false, updated_at: :updated_at, type: :utc_datetime] schema "app_settings" do field :value, :string, default: "" timestamps() end end