]> Untitled Git - lemmy.git/blob - crates/db_schema/src/source/site.rs
Use URL type in most outstanding struct fields (#1468)
[lemmy.git] / crates / db_schema / src / source / site.rs
1 use crate::{schema::site, DbUrl};
2 use serde::Serialize;
3
4 #[derive(Queryable, Identifiable, PartialEq, Debug, Clone, Serialize)]
5 #[table_name = "site"]
6 pub struct Site {
7   pub id: i32,
8   pub name: String,
9   pub description: Option<String>,
10   pub creator_id: i32,
11   pub published: chrono::NaiveDateTime,
12   pub updated: Option<chrono::NaiveDateTime>,
13   pub enable_downvotes: bool,
14   pub open_registration: bool,
15   pub enable_nsfw: bool,
16   pub icon: Option<DbUrl>,
17   pub banner: Option<DbUrl>,
18 }
19
20 #[derive(Insertable, AsChangeset)]
21 #[table_name = "site"]
22 pub struct SiteForm {
23   pub name: String,
24   pub description: Option<String>,
25   pub creator_id: i32,
26   pub updated: Option<chrono::NaiveDateTime>,
27   pub enable_downvotes: bool,
28   pub open_registration: bool,
29   pub enable_nsfw: bool,
30   // when you want to null out a column, you have to send Some(None)), since sending None means you just don't want to update that column.
31   pub icon: Option<Option<DbUrl>>,
32   pub banner: Option<Option<DbUrl>>,
33 }