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?
|
feedback
|
|
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.
3-6 should be repeated if there is more than 1 column. | |||||||||||||
feedback
|
|
PostgreSQL 9.1 introduces ability to ALTER Enum types:
| ||||
|
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... | |||||
feedback
|
|
Simplest: get rid of enums. They are not easily modifiable, and thus should very rarely be used. | |||||||||||||||||||||
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:
It's a little scary, but it makes sense given the way Postgres actually stores its data. | |||||||||
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:
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 | |||||
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.)
Also in this way the column order will not be changed. | |||
|
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. | |||||||
feedback
|