Write a SpacetimeDB backend module in TypeScript that defines one table and seeds one row.

TABLE
- primitive
  - Fields:
    - id: number (u64, primary key, autoInc)
    - count: number (i32)
    - total: bigint (i64)
    - price: number (f32)
    - ratio: number (f64)
    - active: boolean
    - name: string

REDUCERS
- seed: insert one row with all field types (id is auto-assigned):
  - (count=2, total=3000000000, price=1.5, ratio=2.25, active=true, name="Alice")