In addition to the above answers, for Rails 4 (and possibly 3.2) you can do this to avoid "Invalid OID" type warnings:
ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID.alias_type 'my_enum_type', 'text'
When querying, you will also want to convert the string to your type, for example
scope :my_enum_value_is, ->(value){
where('my_enum_value = ?::my_enum_type', value)
}
You'll also want to patch the column parser:
class ActiveRecord::ConnectionAdapters::Column
private
def simplified_type_with_my_enum_type(field_type)
if field_type == 'my_enum_type'
field_type.to_sym
else
simplified_type_without_my_enum_type(field_type)
end
end
alias_method_chain :simplified_type, :my_enum_type
end