﻿Write a SpacetimeDB backend module in Rust that defines two tables and a reducer that looks up a row by primary-key index and writes a projection to another table.

TABLES
- users
  - Struct: User
  - Fields:
    - id: i32 (primary key)
    - name: String
    - age: i32
    - active: bool

- results
  - Struct: ResultRow
  - Fields:
    - id: i32 (primary key)
    - name: String

REDUCERS
- lookup_user_name: given id:i32, find the users row with that id using the index and insert (id, name) into results.
