X-Git-Url: http://these/git/?a=blobdiff_plain;f=crates%2Fdb_schema%2Fsrc%2Fschema.rs;h=850b784338b828e14becf75ff074950276e57078;hb=c27d2a56873de58142e531915c3df002878d59e1;hp=9f0b1eb9da21a9893058c4b9966ae18849da9ceb;hpb=6f3bf4634b0e1cf529c4683d6ee971917e2bfa50;p=lemmy.git diff --git a/crates/db_schema/src/schema.rs b/crates/db_schema/src/schema.rs index 9f0b1eb9..850b7843 100644 --- a/crates/db_schema/src/schema.rs +++ b/crates/db_schema/src/schema.rs @@ -721,6 +721,16 @@ table! { } } +table! { + tagline(id) { + id -> Int4, + local_site_id -> Int4, + content -> Text, + published -> Timestamp, + updated -> Nullable, + } +} + joinable!(person_block -> person (person_id)); joinable!(comment -> person (creator_id)); @@ -804,6 +814,7 @@ joinable!(federation_allowlist -> instance (instance_id)); joinable!(federation_blocklist -> instance (instance_id)); joinable!(local_site -> site (site_id)); joinable!(local_site_rate_limit -> local_site (local_site_id)); +joinable!(tagline -> local_site (local_site_id)); allow_tables_to_appear_in_same_query!( activity, @@ -855,6 +866,7 @@ allow_tables_to_appear_in_same_query!( email_verification, registration_application, language, + tagline, local_user_language, site_language, community_language,