diff options
Diffstat (limited to 'src/model/bucket_table.rs')
-rw-r--r-- | src/model/bucket_table.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/model/bucket_table.rs b/src/model/bucket_table.rs index 168ed713..2cb206ce 100644 --- a/src/model/bucket_table.rs +++ b/src/model/bucket_table.rs @@ -114,6 +114,8 @@ impl Crdt for Bucket { pub struct BucketTable; impl TableSchema for BucketTable { + const TABLE_NAME: &'static str = "bucket"; + type P = EmptyKey; type S = String; type E = Bucket; |