X-Git-Url: http://these/git/?a=blobdiff_plain;f=crates%2Fdb_schema%2Fsrc%2Fsource%2Fsite.rs;h=8e73cca41b411fb78e1a9a60dd2e8f78d4e69a1d;hb=00b0b26dfa0f79fdb4867fd4545b119ca81a521b;hp=6a055842054d72854880ef239e70f24f050316d3;hpb=24be9f2cd5afefc2bb1f88021b6e73ffe9ffacf0;p=lemmy.git diff --git a/crates/db_schema/src/source/site.rs b/crates/db_schema/src/source/site.rs index 6a055842..8e73cca4 100644 --- a/crates/db_schema/src/source/site.rs +++ b/crates/db_schema/src/source/site.rs @@ -26,6 +26,7 @@ pub struct Site { pub private_key: Option, pub public_key: String, pub default_theme: String, + pub default_post_listing_type: String, } #[derive(Insertable, AsChangeset, Default)] @@ -52,4 +53,5 @@ pub struct SiteForm { pub private_key: Option>, pub public_key: Option, pub default_theme: Option, + pub default_post_listing_type: Option, }