Files
shooting-event/phoenix/lib/shooting_event_phx/domain/app_setting.ex

12 lines
282 B
Elixir
Raw Normal View History

2026-04-29 00:45:48 +04:00
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