diff options
Diffstat (limited to 'src/model/key_table.rs')
-rw-r--r-- | src/model/key_table.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/model/key_table.rs b/src/model/key_table.rs index a6186aa9..225f51c7 100644 --- a/src/model/key_table.rs +++ b/src/model/key_table.rs @@ -120,6 +120,8 @@ pub enum KeyFilter { } impl TableSchema for KeyTable { + const TABLE_NAME: &'static str = "key"; + type P = EmptyKey; type S = String; type E = Key; |