aboutsummaryrefslogtreecommitdiff
path: root/src/schema.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/schema.rs')
-rw-r--r--src/schema.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/schema.rs b/src/schema.rs
new file mode 100644
index 0000000..8ed6e58
--- /dev/null
+++ b/src/schema.rs
@@ -0,0 +1,9 @@
1table! {
2 members (id) {
3 id -> Integer,
4 username -> Varchar,
5 password -> Varchar,
6 phone_number -> Varchar,
7 email_id -> Varchar,
8 }
9}