sushilbansal

sushilbansal

Hi,
I am trying to use Ecto.Enum as following:

 schema "demographics" do
    field :gender, Ecto.Enum,
      values: [
        male: "Male",
        female: "Female",
        other: "Other",
        prefer_not_to_say: "Prefer not to say"
      ]

    field :year_of_birth, :integer
    timestamps(type: :utc_datetime)
  end
  # function to get all the gender options - will be used with select input component
  def get_gender_options() do
    Ecto.Enum.dump_values(__MODULE__, :gender)
  end

It is working fine; it is saving in DB as string (e.g. “Prefer not to say”). Issue occurs when i fetch the db record and display on LiveView. It displays gender as: prefer_not_to_say

How i can get LV to display “Prefer not to say”.

One way i can think of is:

 schema "demographics" do
    field :gender, Ecto.Enum,
      values: [
        :Male,
        :Female,
        :Other,
        :"Prefer not to say"
      ]

    field :year_of_birth, :integer
    timestamps(type: :utc_datetime)
  end

Is there any other way?

Showing Posts 16 to 7

smathy

smathy

Not to mention organizations who use “tableau”-type reporting tools to create their own business reports. Keeping proxy values in sync between your code and not-your-code is a massive PITA.

smathy

smathy

It’s definitely not tedious to add a value, that’s simple and has been available since pg 9.1. Renaming has been available since 10 which alleviates most of the need for deleting, but yes - deleting is a bit tedious, but IMHO appropriately so - you have other issues if you’re needing to delete enum values more than “almost never” :slight_smile:

LostKobrakai

LostKobrakai

I’d argue it very much is. You can throw out any default view a postgres client might give you of a table, because it’ll show integers and not your mapped values. And especially when on call you don’t want to first dig up a mapping somewhere to be able to understand what those intergers mean in the first place.

sodapopcan

sodapopcan

You can also value::text but I still prefer the flexibility if I can get away with it.

dimitarvp

dimitarvp

I get the reservation against having to work in psql and not seeing the full names of the enum values but is that really such a problem in practice? You can just slap one CASE ... THEN inside your SQL query – that will translate integers to strings – and have best of both worlds.

I’ve been using PG enums from ever since they started existing.

sodapopcan

sodapopcan

In short, possibly. You can’t delete or reorder values which can be mildly to very annoying, or not annoying at all if you don’t run into it :slight_smile:

While I do agree with @champeric that pg enums are nice and I have used to use them, my counter experience is that I’ve never run into any of the caveats of using plain strings. If storage isn’t an issue, I find them much more convenient. While I’m big into fkeys and partial indices, tracking down rows with a mistyped status is orders of magnitude simpler than dealing with orphaned rows. That’s just an example, though, I’ve never actually dealt with the former.

sushilbansal

sushilbansal OP

will it not be tedious to update (add or delete) an entry later on?

Hermanverschooten

Hermanverschooten

Didn’t know about the ENUM in pg, TIL
thx good to know.

krasenyp

krasenyp

You are right. Even a lookup table and a foreign key column is better than plain integers. We don’t know @Hermanverschooten’s context though. Might be storage constrained.

champeric

champeric

I know some people don’t like using them, but it’s way better in my opinion to use an ENUM if you’re using PostgreSQL. It uses the same space as an int, but it will be readable and better in terms of data integrity (you can’t have a value that doesn’t exist).

There are some caveats, but I never had any problems with them.

CREATE TYPE gender AS ENUM ('male', 'female', 'other');

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews