This form moves the table into another schema. Associated indexes, constraints, and sequences owned by table columns are moved as well.
Source code viewer
-- Keep in mind triggers and views. ALTER TABLE from_schema.table SET SCHEMA to_schema;Programming Language: PostgreSQL