From 34888827f8a06de835cbe5833a06914f28cce514 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Tue, 20 Apr 2021 17:07:11 +0100 Subject: Switch to Warp + SQLx, use async, switch to Rust stable (#36) * Switch to warp + sql, use async and stable rust * Update CI to use stable --- src/remote/models.rs | 60 ---------------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 src/remote/models.rs (limited to 'src/remote/models.rs') diff --git a/src/remote/models.rs b/src/remote/models.rs deleted file mode 100644 index 7f6f7766..00000000 --- a/src/remote/models.rs +++ /dev/null @@ -1,60 +0,0 @@ -use chrono::prelude::*; - -use crate::schema::{history, sessions, users}; - -#[derive(Deserialize, Serialize, Identifiable, Queryable, Associations)] -#[table_name = "history"] -#[belongs_to(User)] -pub struct History { - pub id: i64, - pub client_id: String, // a client generated ID - pub user_id: i64, - pub hostname: String, - pub timestamp: NaiveDateTime, - - pub data: String, - - pub created_at: NaiveDateTime, -} - -#[derive(Identifiable, Queryable, Associations)] -pub struct User { - pub id: i64, - pub username: String, - pub email: String, - pub password: String, -} - -#[derive(Queryable, Identifiable, Associations)] -#[belongs_to(User)] -pub struct Session { - pub id: i64, - pub user_id: i64, - pub token: String, -} - -#[derive(Insertable)] -#[table_name = "history"] -pub struct NewHistory<'a> { - pub client_id: &'a str, - pub user_id: i64, - pub hostname: String, - pub timestamp: chrono::NaiveDateTime, - - pub data: &'a str, -} - -#[derive(Insertable)] -#[table_name = "users"] -pub struct NewUser<'a> { - pub username: &'a str, - pub email: &'a str, - pub password: &'a str, -} - -#[derive(Insertable)] -#[table_name = "sessions"] -pub struct NewSession<'a> { - pub user_id: i64, - pub token: &'a str, -} -- cgit v1.3.1