aboutsummaryrefslogtreecommitdiff
path: root/entity/src
diff options
context:
space:
mode:
Diffstat (limited to 'entity/src')
-rw-r--r--entity/src/invite_tokens.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/entity/src/invite_tokens.rs b/entity/src/invite_tokens.rs
index c0b59f7..51f09ff 100644
--- a/entity/src/invite_tokens.rs
+++ b/entity/src/invite_tokens.rs
@@ -10,7 +10,7 @@ pub struct Model {
10 pub token: Uuid, 10 pub token: Uuid,
11 pub queue_id: i64, 11 pub queue_id: i64,
12 pub name: String, 12 pub name: String,
13 pub is_revoked: bool, 13 pub expiration_date: Option<DateTime>,
14} 14}
15 15
16#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] 16#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]