From 3b3b287cafe6cd11bb044005e4d109aef17a2887 Mon Sep 17 00:00:00 2001 From: Shubham Mishra Date: Wed, 11 Feb 2026 18:50:50 +0530 Subject: [PATCH] exlude test-app --- crates/bindings-typescript/test-app/server/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/bindings-typescript/test-app/server/src/lib.rs b/crates/bindings-typescript/test-app/server/src/lib.rs index d7f9cbb747..853c91632e 100644 --- a/crates/bindings-typescript/test-app/server/src/lib.rs +++ b/crates/bindings-typescript/test-app/server/src/lib.rs @@ -1,6 +1,6 @@ use spacetimedb::{reducer, table, Identity, ReducerContext, SpacetimeType, Table}; -#[table(accessor = player, public)] +#[table(name = player, public)] pub struct Player { #[primary_key] #[auto_inc] @@ -16,14 +16,14 @@ pub struct Point { pub y: u16, } -#[table(accessor = user, public)] +#[table(name = user, public)] pub struct User { #[primary_key] pub identity: Identity, pub username: String, } -#[table(accessor = unindexed_player, public)] +#[table(name = unindexed_player, public)] pub struct UnindexedPlayer { #[primary_key] #[auto_inc]