feat(db): revert to previous working commit.

This commit is contained in:
ryan 2025-01-20 19:14:34 +03:00
parent a99b5164d8
commit 29434dc37c
2 changed files with 3 additions and 3 deletions

View file

@ -41,7 +41,7 @@ pub fn ItemsList(
id: Uuid::new_v4().to_string(),
name: String::new(),
description: String::new(),
reviews: vec![],
// reviews: vec![],
wikidata_id: None,
custom_properties: HashMap::new(),
}]);
@ -245,7 +245,7 @@ pub fn ItemsList(
id: Uuid::new_v4().to_string(),
name: String::new(),
description: String::new(),
reviews: vec![],
// reviews: vec![],
wikidata_id: None,
custom_properties: HashMap::new(),
});

View file

@ -7,7 +7,7 @@ pub struct Item {
pub id: String,
pub name: String,
pub description: String,
pub reviews: Vec<ReviewWithRating>,
// pub reviews: Vec<ReviewWithRating>,
pub wikidata_id: Option<String>,
pub custom_properties: HashMap<String, String>,
}