db=# alter table isi.items_stat drop constraint items_stat_item_id_fkey;ERROR: "items_pkey" is an index
The foreign key points to items.Item_id which is what's indexed by items_pkey. But I only wanted to drop that constraint.
/Magnus