X-Git-Url: http://these/git/?a=blobdiff_plain;f=crates%2Fdb_schema%2Fsrc%2Fsource%2Fsite.rs;h=9ba8697527f2393a628ec773a81bcd74de5a179b;hb=9ef0efa420f54c7bba9a80537d7ea965672b9abd;hp=b43783669af3f0c454b66c49ed3be8293c7c95be;hpb=60e958653064ed16b78e41cb7f5d6e8e8a945c8c;p=lemmy.git diff --git a/crates/db_schema/src/source/site.rs b/crates/db_schema/src/source/site.rs index b4378366..9ba86975 100644 --- a/crates/db_schema/src/source/site.rs +++ b/crates/db_schema/src/source/site.rs @@ -31,6 +31,7 @@ pub struct Site { pub public_key: String, pub default_theme: String, pub default_post_listing_type: String, + pub legal_information: Option, } #[derive(Default)] @@ -59,4 +60,5 @@ pub struct SiteForm { pub public_key: Option, pub default_theme: Option, pub default_post_listing_type: Option, + pub legal_information: Option, }