Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6614307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:19:24+00:00 2026-05-25T20:19:24+00:00

PostgreSQL has the concept of enumerated types built into the database. How would you

  • 0

PostgreSQL has the concept of enumerated types built into the database.

How would you implement a table with a column that uses an enumerated type in Rails 3? Do you need to define the enum in PostgreSQL somehow? How could you create a DB migration that does this?

Working in Rails 3.07, Ruby 1.92p180, PostgreSQL 8.3.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T20:19:25+00:00Added an answer on May 25, 2026 at 8:19 pm

    Rails does not support the ENUM datatype out of the box. This is because not all databases support it that datatype. I found that a common way of dealing with ENUM values is to manually create the enum column in your database (PostgreSQL in your case), and deal with it as a string column in your Rails application. Then, use the validates_inclusion_of validator to force the use of the allowed values.

    validates_inclusion_of :gender, :in => [ "male", "female" ]
    

    And use native SQL in your migration to add the enum field:

    class AddEnumType < ActiveRecord::Migration
      def up
        execute ".." # your native PostgreSQL queries to add the ENUM field
      end
    end
    

    edit (June 2014)

    Rails 4.1 now supports enums. The validates_inclusion_of can now be changed to:

    enum gender: [ :male, :female ]
    

    (However, this is still not natively supported by the underlying database, so the native SQL migration is still needed.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a postgresql database that has this column structure: Author id name Book
I have a client that has a PostgreSQL database and he cannot remember the
In PostgreSQL: I have a Table that has 3 columns: CustomerNum, OrderNum, OrderDate .
The situation is something like this: PostgreSQL Database table has a field dateAdded which
postgres has an array data type, in this case a numeric array: CREATE TABLE
In PostgreSQL 8.3 database I have bookings table referencing booking_transactions table by ID. So
PostgreSQL has allowed me to name a column campaign_$. I like the name because
Is it possible with Postgresql to create a database which has 2 users which
My company is developing an application that has a dependency on PostgreSQL, we are
I have a table that has three columns: Category, Timestamp and Value. What I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.