Column options:
ALTER TABLE test ALTER COLUMN test SET STATISTICS 0;
ALTER TABLE test ALTER COLUMN test SET (n_distinct=-1);
Makes no difference with migra.
Custom column options can be found in pg_catalog.pg_attribute.attoptions, statistics setting in pg_catalog.pg_attribute.attstattarget.
Column options:
ALTER TABLE test ALTER COLUMN test SET STATISTICS 0;ALTER TABLE test ALTER COLUMN test SET (n_distinct=-1);Makes no difference with migra.
Custom column options can be found in
pg_catalog.pg_attribute.attoptions, statistics setting inpg_catalog.pg_attribute.attstattarget.