ALTER TABLE items ALTER COLUMN item_id DROP DEFAULT;
DROP SEQUENCE items_item_id_seq;

でデフォルト値を消してあげるとintegerになる。
あと、シークエンスは残っちゃうので、DROPしておく必要あり。