fix: migration stuff

This commit is contained in:
aprilthepink 2024-07-21 21:04:13 +02:00
parent 4429aa380a
commit 451cf8941a
2 changed files with 13 additions and 8 deletions

View file

@ -95,12 +95,13 @@ pub struct Person {
}
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct TagType {
pub id: Url,
pub id: Option<Url>,
pub href: Option<Url>,
pub name: String,
#[serde(rename = "type")]
pub type_: String,
pub updated: DateTime<Utc>,
pub icon: IconType,
pub updated: Option<DateTime<Utc>>,
pub icon: Option<IconType>,
}
#[derive(Clone, Debug, Deserialize, Serialize)]