]> Untitled Git - lemmy.git/blobdiff - crates/db_schema/src/schema.rs
Revert "feat: re-added captcha checks (#3249)" (#3288)
[lemmy.git] / crates / db_schema / src / schema.rs
index 6fe1391269ae6ea7e6d76d61b2a0666d5e5d3f95..ac4ddc47a4277b968b703c13f649fbe9541668c2 100644 (file)
@@ -95,6 +95,7 @@ diesel::table! {
         downvotes -> Int8,
         published -> Timestamp,
         child_count -> Int4,
+        hot_rank -> Int4,
     }
 }
 
@@ -191,6 +192,7 @@ diesel::table! {
         users_active_week -> Int8,
         users_active_month -> Int8,
         users_active_half_year -> Int8,
+        hot_rank -> Int4,
     }
 }
 
@@ -634,7 +636,8 @@ diesel::table! {
         id -> Int4,
         #[max_length = 200]
         name -> Varchar,
-        url -> Nullable<Text>,
+        #[max_length = 512]
+        url -> Nullable<Varchar>,
         body -> Nullable<Text>,
         creator_id -> Int4,
         community_id -> Int4,
@@ -670,6 +673,8 @@ diesel::table! {
         newest_comment_time -> Timestamp,
         featured_community -> Bool,
         featured_local -> Bool,
+        hot_rank -> Int4,
+        hot_rank_active -> Int4,
     }
 }