feat: make channel description nullable

This commit is contained in:
Radical 2025-05-22 16:28:58 +02:00
parent a6d35b0ba2
commit 2e1382c1d4
3 changed files with 8 additions and 1 deletions

View file

@ -26,7 +26,7 @@ diesel::table! {
#[max_length = 32]
name -> Varchar,
#[max_length = 500]
description -> Varchar,
description -> Nullable<Varchar>,
}
}