class PgConn::SchemaMethods

def exist_table?(schema, table)

Return true if table exists
def exist_table?(schema, table)
  conn.exist? relation_exist_query(schema, table, kind: %w(r f))
end