Move table in postgres to different schema

To move table to different schema in PostgreSQL use:

ALTER TABLE table_name SET SCHEMA schema_name;

Comments

comments powered by Disqus