diff options
Diffstat (limited to 'autere_db/src/schema.rs')
| -rw-r--r-- | autere_db/src/schema.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/autere_db/src/schema.rs b/autere_db/src/schema.rs new file mode 100644 index 0000000..98d0df7 --- /dev/null +++ b/autere_db/src/schema.rs @@ -0,0 +1,7 @@ +use super::*; + +pub struct Schema { + pub fields: Vec<String>, + pub primary_key: String, + pub secondary_keys: Vec<String>, +} |
