You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Create a compound secondary index based on the first_name and last_name attributes
r.table("users").indexCreate(
"full_name", [r.row("last_name"), r.row("first_name")]
).run(conn, callback)