this is a simple one to avoid ENORMOUS conformer hashes
Provides a fix to one of the problems #50 was working around.
An existing conformer table can be modified in place to support working with this updated version of the hash:
alter table conformers add column c_hash_2 text;
update conformers set c_hash_2 = substring(sha256(conformer_hash::bytea)::text from 3);
alter table conformers drop column conformer_hash;
alter table conformers rename column c_hash_2 to conformer_hash;
this is a simple one to avoid ENORMOUS conformer hashes
Provides a fix to one of the problems #50 was working around.
An existing conformer table can be modified in place to support working with this updated version of the hash: