katbin/src/core/paste/entity.rs
supercmmetry 36ca95e2e3
chore: fix warnings and cargo fmt
Signed-off-by: supercmmetry <vishaals2000@gmail.com>
2021-07-29 11:42:25 +05:30

11 lines
263 B
Rust

use crate::schema::pastes;
#[derive(AsChangeset, Serialize, Deserialize, Queryable, Insertable)]
#[table_name = "pastes"]
pub struct Paste {
pub id: Option<String>,
pub belongs_to: Option<String>,
pub is_url: Option<bool>,
pub content: String,
}