I've got a field that is using an enumeration type. I wish to update the enum to have an additional field (I don't want to delete anything, just add a new label). What is the simplest way to do this?

link|improve this question

78% accept rate
feedback

8 Answers

up vote 15 down vote accepted

I had the same problem few days ago and found this post. So my answer can be helpful for someone who is looking for solution :)

If you have only one or two columns which use the enum type you want to change, you can try this. Also you can change the order of values in the new type.

-- 1. rename the enum type you want to change
alter type some_enum_type rename to _some_enum_type;
-- 2. create new type
create type some_enum_type as enum ('old', 'values', 'and', 'new', 'ones');
-- 3. rename column(s) which uses our enum type
alter table some_table rename column some_column to _some_column;
-- 4. add new column of new type
alter table some_table add some_column some_enum_type not null default 'new';
-- 5. copy values to the new column
update some_table set some_column = _some_column::text::some_enum_type;
-- 6. remove old column and type
alter table some_table drop column _some_column;
drop type _some_enum_type;

3-6 should be repeated if there is more than 1 column.

link|improve this answer
1  
It's worth mentioning that this can all be done in a single transaction, so it's mostly safe to do it in a production database. – David Leppik Jul 8 '11 at 20:41
I've fixed typos in 5 and 6. Other than that, works great, thanks! – Ortwin Gentz Nov 18 '11 at 22:25
2  
This was never a good idea. Since 9.1 you can do it all with ALTER TYPE. But even before that, ALTER TABLE foo ALTER COLUMN bar TYPE new_type USING bar::text::new_type; was far superior. – Erwin Brandstetter Nov 18 '11 at 22:46
Be aware that older versions of Postgres don't support renaming types. Specifically the version of Postgres on Heroku (shared db, I believe they use PG 8.3) doesn't support it. – Ortwin Gentz Nov 30 '11 at 9:54
feedback

PostgreSQL 9.1 introduces ability to ALTER Enum types:

ALTER TYPE enum_type ADD VALUE 'new_value' BEFORE 'old_value';
ALTER TYPE enum_type ADD VALUE 'new_value' AFTER'old_value';
link|improve this answer
feedback

Disclaimer: I haven't tried this solution, so it might just no work ;-)

You should be looking at pg_enum. If you only want to change the label of an existing enum, a simple UPDATE will do it.

To add a new enum values: First you insert the new value into pg_enum. If the new value should be the last, again you're done. If not (you need to a new enum value in between existing ones), you'll have to update each distinct value in your table, going from the "largest" to the lowest... After you'll just have to rename them in pg_enum in the opposite order.

Illustration: you have enum ('enum1', 'enum2', 'enum3') and you want to go to ('enum1', 'enum1b', 'enum2', enum3') insert into pg_enum (OID, 'newenum3'); update table set enumvalue to 'newenum3' where enumvalue='enum3'; update table set enumvalue to 'enum3' where enumvalue='enum2'; then update table pg_enum set name='enum1b' where name='enum2' and enumtypid=OID; and so on...

link|improve this answer
Works perfectly! – dslh Jan 18 '11 at 22:20
feedback

Simplest: get rid of enums. They are not easily modifiable, and thus should very rarely be used.

link|improve this answer
2  
perhaps a simple check constrain will do? – depesz Nov 20 '09 at 20:34
1  
And what exactly is the problem of storing values as strings? – depesz Nov 22 '09 at 20:29
1  
Seems like a waste to store them that way.. when I index those fields they'll add quite a bit more load than an int or enum would.. – Ian Nov 23 '09 at 14:01
4  
@Grazer: in 9.1 you can add values to enum ( depesz.com/index.php/2010/10/27/… ) - but you still can't remove old ones. – depesz Dec 17 '10 at 12:07
2  
@WillSheppard - I think that basically never. I think that custom types based on text with check constraints as much better in any case. – depesz Apr 18 at 9:45
show 9 more comments
feedback

I can't seem to post a comment, so I'll just say that updating pg_enum works in Postgres 8.4 . For the way our enums are set up, I've added new values to existing enum types via:

INSERT INTO pg_enum (enumtypid, enumlabel)
  SELECT typelem, 'NEWENUM' FROM pg_type WHERE
    typname = '_ENUMNAME_WITH_LEADING_UNDERSCORE';

It's a little scary, but it makes sense given the way Postgres actually stores its data.

link|improve this answer
1  
Great answer! Helps just for appending on a new enum, but obviously doesn't solve the case on where you have to re-order. – Mahmoud Abdelkader Feb 17 '11 at 5:12
1  
feedback

Updating pg_enum works, as does the intermediary column trick highlighted above. One can also use USING magic to change the column's type directly:

CREATE TYPE test AS enum('a', 'b');
CREATE TABLE foo (bar test);
INSERT INTO foo VALUES ('a'), ('b');

ALTER TABLE foo ALTER COLUMN bar TYPE varchar;

DROP TYPE test;
CREATE TYPE test as enum('a', 'b', 'c');

ALTER TABLE foo ALTER COLUMN bar TYPE test
USING CASE
WHEN bar = ANY (enum_range(null::test)::varchar[])
THEN bar::test
WHEN bar = ANY ('{convert, these, values}'::varchar[])
THEN 'c'::test
ELSE NULL
END;

As long as you've no functions that explicitly require or return that enum, you're good. (pgsql will complain when you drop the type if there are.)

Also, note that PG9.1 is introducing an ALTER TYPE statement, which will work on enums:

http://developer.postgresql.org/pgdocs/postgres/release-9-1-alpha.html

link|improve this answer
The relevant documentation for PostgreSQL 9.1 can now be found at postgresql.org/docs/9.1/static/sql-altertype.html – Wichert Akkerman Oct 12 '11 at 14:09
ALTER TABLE foo ALTER COLUMN bar TYPE test USING bar::text::new_type; But largely irrelevant now ... – Erwin Brandstetter Nov 18 '11 at 22:51
feedback

A possible solution is the following; precondition is, that there are not conflicts in the used enum values. (e.g. when removing an enum value, be sure that this value is not used anymore.)

-- rename the old enum
alter type old_enum rename to old_enum__;
-- create the new enum
create type new_enum as enum ('value1', 'value2', 'value3');

-- alter all you enum columns
alter table my_table
  alter column my_column type new_enum using my_column::text::new_enum;

-- drop the old enum
drop type old_enum__;

Also in this way the column order will not be changed.

link|improve this answer
feedback

When using Navicat you can go to types (under view -> others -> types) - get the design view of the type - and click the "add label" button.

link|improve this answer
Would be nice but in real life, it's not useful: ERROR: cannot drop type foo because other objects depend on it HINT: Use DROP ... CASCADE to drop the dependent objects too. – Ortwin Gentz Nov 18 '11 at 22:08
Weird, it worked for me. (Not sure why you use DROP when TS only wanted to add a value to enum field) – jvv Nov 30 '11 at 9:13
I didn't do a DROP specifically but went exactly after your procedure. I assume Navicat does the DROP behind the scenes and fails. I'm using Navicat 9.1.5 Lite. – Ortwin Gentz Nov 30 '11 at 9:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.