aboutsummaryrefslogtreecommitdiff
path: root/src/schema.rs
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-10-04 08:53:46 +0100
committerAkshay <[email protected]>2020-10-04 08:53:46 +0100
commit057382f8d138c63cdc48b0facd9bf4a4a229057a (patch)
treeb30ba227c49918e0e65fc14068307cf11a9248bc /src/schema.rs
init
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}