Slony-I 2.2.4 Documentation | ||||
---|---|---|---|---|
Prev | Fast Backward | Chapter 8. Schema schemadoc | Fast Forward | Next |
Function Properties
Language: PLPGSQL
Return Type: boolean
Add a column of a given type to a table if it is missingDECLARE v_row record; v_query text; BEGIN if not check_table_field_exists(p_namespace, p_table, p_field) then raise notice 'Upgrade table %.% - add field %', p_namespace, p_table, p_field; v_query := 'alter table ' || p_namespace || '.' || p_table || ' add column '; v_query := v_query || p_field || ' ' || p_type || ';'; execute v_query; return 't'; else return 'f'; end if; END;