Hello If I create a table elements in a schema s and in the public schema (in postgresql), for example: create schema s; create table s.elements (id serial primary key, data varchar); crate table elements (id serial primary key, data varchar); How can I create an scaffold for each table without confusion? Thanks Daniel H