aboutsummaryrefslogtreecommitdiffstats
path: root/autere_db/src/schema.rs
diff options
context:
space:
mode:
authorJan Tuomi <jan@jantuomi.fi>2025-05-03 00:15:02 +0300
committerJan Tuomi <jan@jantuomi.fi>2025-05-03 00:20:36 +0300
commit84ac3652415b662aae9580c008a5aa996d58c9f4 (patch)
tree3d39fe6ce5da76a1102458c120480e4190a70fcf /autere_db/src/schema.rs
parente17048eddfe2df86abd2d498da2a33b9c3dd8a72 (diff)
Rename to AutereDB
Diffstat (limited to 'autere_db/src/schema.rs')
-rw-r--r--autere_db/src/schema.rs7
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>,
+}